Fix suppressing the shutdown_slug message

This commit is contained in:
Micah Lee 2018-09-16 13:50:30 -07:00
parent 38dd9ce4cb
commit 868d1ac2f8

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()