From 9981a68745eab14e781376d839b6ba6d3c75c64b Mon Sep 17 00:00:00 2001 From: Bob Mottram Date: Tue, 17 Dec 2019 15:06:13 +0000 Subject: [PATCH] Reverse logic --- xmpp.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/xmpp.py b/xmpp.py index 05303ae3..667669cf 100644 --- a/xmpp.py +++ b/xmpp.py @@ -28,7 +28,7 @@ def getXmppAddress(actorJson: {}) -> str: continue if '@' not in propertyValue['value']: continue - if '"' not in propertyValue['value']: + if '"' in propertyValue['value']: continue return propertyValue['value'] return ''