~singpolyma/snikket-sdk

2ff342e898830190fe265d69ec68eac13deb1f34 — Stephen Paul Weber 22 days ago 6f3c089
Don't query for type on blocked jid

Since the server won't let us talk to them anyway
1 files changed, 2 insertions(+), 6 deletions(-)

M snikket/Client.hx
M snikket/Client.hx => snikket/Client.hx +2 -6
@@ 1250,12 1250,8 @@ class Client extends EventEmitter {
	}

	private function serverBlocked(blocked: String) {
		final chat = getChat(blocked);
		if (chat == null) {
			startChatWith(blocked, (caps) -> Closed, (chat) -> chat.block(null, false));
		} else {
			chat.block(null, false);
		}
		final chat = getChat(blocked) ?? getDirectChat(blocked, false);
		chat.block(null, false);
	}

	// This is called right before we're going to trigger for all chats anyway, so don't bother with single triggers