diff --git a/src/remote_control.py b/src/remote_control.py index f3e29bca0..4957cb811 100644 --- a/src/remote_control.py +++ b/src/remote_control.py @@ -198,6 +198,8 @@ class SignalObject(DbusPrototype): return None if jid.startswith('xmpp://'): jid = jid[7:] # len('xmpp://') = 7 + elif jid.startswith('xmpp:'): + jid = jid[5:] # len('xmpp:') = 5 if account: accounts = [account]