diff options
author | fiaxh <git@lightrise.org> | 2022-01-23 19:00:05 +0100 |
---|---|---|
committer | fiaxh <git@lightrise.org> | 2022-01-23 19:50:01 +0100 |
commit | b123800f26e78df5b4e01857bc5c2ac6a954ba5b (patch) | |
tree | 57c6e9aed7b585b5c288f2a527cc63bcd469f0e4 /libdino/src/service/calls.vala | |
parent | 19a3fa5e02984f186b5291b24954e1a5140d379e (diff) | |
download | dino-b123800f26e78df5b4e01857bc5c2ac6a954ba5b.tar.gz dino-b123800f26e78df5b4e01857bc5c2ac6a954ba5b.zip |
Small cleanup
Diffstat (limited to 'libdino/src/service/calls.vala')
-rw-r--r-- | libdino/src/service/calls.vala | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/libdino/src/service/calls.vala b/libdino/src/service/calls.vala index b30c2755..741aa673 100644 --- a/libdino/src/service/calls.vala +++ b/libdino/src/service/calls.vala @@ -172,7 +172,7 @@ namespace Dino { if (call_state.group_call != null && call_state.group_call.muc_jid.equals(muji_muc)) { if (call_state.peers.keys.contains(session.peer_full_jid)) { PeerState peer_state = call_state.peers[session.peer_full_jid]; - debug("[%s] Incoming call, we know the peer. Expected %b", account.bare_jid.to_string(), peer_state.waiting_for_inbound_muji_connection); + debug("[%s] Incoming call, we know the peer. Expected %s", account.bare_jid.to_string(), peer_state.waiting_for_inbound_muji_connection.to_string()); if (!peer_state.waiting_for_inbound_muji_connection) return; peer_state.set_session(session); @@ -434,7 +434,7 @@ namespace Dino { }); muji_meta_module.call_rejected.connect((from_jid, to_jid, muc_jid, message_type) => { if (from_jid.equals_bare(account.bare_jid)) return; - debug(@"[%s] rejected our MUJI invite to %s", account.bare_jid.to_string(), from_jid.to_string(), muc_jid.to_string()); + debug(@"[%s] %s rejected our MUJI invite to %s", account.bare_jid.to_string(), from_jid.to_string(), muc_jid.to_string()); }); stream_interactor.module_manager.get_module(account, Xep.Coin.Module.IDENTITY).coin_info_received.connect((jid, info) => { |