Rename Chat.set_blocking() into set_blocked()

This commit is contained in:
Alexander Krotov
2020-01-25 20:57:17 +03:00
parent 889327b5f6
commit 099fe6f477

View File

@@ -114,7 +114,7 @@ impl ChatId {
Ok(()) Ok(())
} }
pub fn set_blocking(self, context: &Context, new_blocking: Blocked) -> bool { pub fn set_blocked(self, context: &Context, new_blocked: Blocked) -> bool {
if self.is_special() { if self.is_special() {
warn!(context, "ignoring setting of Block-status for {}", self); warn!(context, "ignoring setting of Block-status for {}", self);
return false; return false;
@@ -123,13 +123,13 @@ impl ChatId {
context, context,
&context.sql, &context.sql,
"UPDATE chats SET blocked=? WHERE id=?;", "UPDATE chats SET blocked=? WHERE id=?;",
params![new_blocking, self], params![new_blocked, self],
) )
.is_ok() .is_ok()
} }
pub fn unblock(self, context: &Context) { pub fn unblock(self, context: &Context) {
self.set_blocking(context, Blocked::Not); self.set_blocked(context, Blocked::Not);
} }
/// Archives or unarchives a chat. /// Archives or unarchives a chat.