Fix suppressing the shutdown_slug message

This commit is contained in:
Micah Lee 2018-09-16 13:50:30 -07:00
parent 94048c48c7
commit 4777c45ad8
No known key found for this signature in database
GPG Key ID: 403C2657CD994F73

View File

@ -401,7 +401,7 @@ class OnionShareGui(QtWidgets.QMainWindow):
Alert(self.common, strings._('error_downloads_dir_not_writable').format(self.common.settings.get('downloads_dir')))
if event["type"] == Web.REQUEST_OTHER:
if event["path"] != '/favicon.ico' and event["path"] != "{}/shutdown".format(mode.web.shutdown_slug):
if event["path"] != '/favicon.ico' and event["path"] != "/{}/shutdown".format(mode.web.shutdown_slug):
self.status_bar.showMessage('[#{0:d}] {1:s}: {2:s}'.format(mode.web.error404_count, strings._('other_page_loaded', True), event["path"]))
mode.timer_callback()