diff options
-rwxr-xr-x | rwa/support/sessionservice/service.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/rwa/support/sessionservice/service.py b/rwa/support/sessionservice/service.py index 93ec919..175ae17 100755 --- a/rwa/support/sessionservice/service.py +++ b/rwa/support/sessionservice/service.py @@ -226,7 +226,7 @@ class RWASupportSessionService(dbus.service.Object): try: for uuid, host in self.settings.web_app_hosts.items(): - if host_url in host['url']: + if host_url == host['url']: logging.warning("Given URL is already present!") logging.debug('Did not add "%s" to "web_app_hosts" in user_settings', host_url) |