small fixes

This commit is contained in:
fiaxh 2017-11-01 18:49:53 +01:00
parent d82194af58
commit 81e05e6645
2 changed files with 2 additions and 5 deletions

View File

@ -132,7 +132,7 @@ public class Database {
public void exec(string sql) throws Error {
ensure_init();
if (db.exec(sql) != OK) {
throw new Error(-1, 0, @"SQLite error: $(db.errcode()) - $(db.errmsg())");
throw new Error(-1, 0, "SQLite error: %d - %s", db.errcode(), db.errmsg());
}
}

View File

@ -14,10 +14,7 @@ public class Module : XmppStreamModule, Iq.Handler {
public signal void unblock_all_received(XmppStream stream);
public bool is_blocked(XmppStream stream, string jid) {
foreach (string blocked in stream.get_flag(Flag.IDENTITY).blocklist) {
if (blocked.contains(jid)) return true;
}
return false;
return stream.get_flag(Flag.IDENTITY).blocklist.contains(jid);
}
public bool block(XmppStream stream, Gee.List<string> jids) {