diff --git a/src/Config.py b/src/Config.py
index cc1b4ad9..13e4b814 100644
--- a/src/Config.py
+++ b/src/Config.py
@@ -10,7 +10,7 @@ class Config(object):
def __init__(self, argv):
self.version = "0.5.3"
- self.rev = 2003
+ self.rev = 2004
self.argv = argv
self.action = None
self.config_file = "zeronet.conf"
diff --git a/src/Ui/UiWebsocket.py b/src/Ui/UiWebsocket.py
index 1089189f..9e6304a1 100644
--- a/src/Ui/UiWebsocket.py
+++ b/src/Ui/UiWebsocket.py
@@ -416,14 +416,14 @@ class UiWebsocket(object):
if len(site.peers) == 0:
if sys.modules["main"].file_server.port_opened or sys.modules["main"].file_server.tor_manager.start_onions:
if notification:
- self.cmd("notification", ["info", _["No peers found, but your content is ready to access."], 5000])
+ self.cmd("notification", ["info", _["No peers found, but your content is ready to access."]])
if callback:
self.response(to, "ok")
else:
if notification:
self.cmd("notification", [
"info",
- _("""{_[Your network connection is restricted. Please, open {0} port]}
+ _(u"""{_[Your network connection is restricted. Please, open {0} port]}
{_[on your router to make your site accessible for everyone.]}""").format(config.fileserver_port)
])
if callback: