Reverse logic

merge-requests/6/head
Bob Mottram 2019-12-17 15:06:13 +00:00
parent 044d7f9cbe
commit 9981a68745
1 changed files with 1 additions and 1 deletions

View File

@ -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 ''