Skip to content
Snippets Groups Projects
Commit fd429695 authored by Vincent Texier's avatar Vincent Texier
Browse files

Fix html tags appearing in new version system notification

parent f084c604
No related branches found
No related tags found
No related merge requests found
...@@ -229,8 +229,7 @@ class MainWindow(QMainWindow, Ui_MainWindow): ...@@ -229,8 +229,7 @@ class MainWindow(QMainWindow, Ui_MainWindow):
version_url = latest[2] version_url = latest[2]
if self.app.preferences['notifications']: if self.app.preferences['notifications']:
toast.display("Cutecoin", """<p>{version_info}</br> toast.display("Cutecoin", """{version_info}""".format(
<a href={version_url}>Download link</a></p>""".format(
version_info=version_info, version_info=version_info,
version_url=version_url)) version_url=version_url))
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment