mirror of
https://github.com/TakeV-Lambda/dino.git
synced 2024-11-22 06:54:29 +00:00
small fixes
This commit is contained in:
parent
d82194af58
commit
81e05e6645
2 changed files with 2 additions and 5 deletions
|
@ -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());
|
||||
}
|
||||
}
|
||||
|
||||
|
|
|
@ -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) {
|
||||
|
|
Loading…
Reference in a new issue