Fix missing HTML in notifications resulting in incorrect formatting.

This commit is contained in:
tehspede 2014-11-12 09:24:34 +02:00
parent 15fff14355
commit a1ce52df8f
2 changed files with 3 additions and 0 deletions

View File

@ -79,6 +79,7 @@
* Update PNotify to version [2.0.1]
* Change the notification popups to always show the close button.
* Fix issue where popups did not show if multiple tabs are used. Popups now queue and display when a tab is brought into focus.
* Fix missing HTML in notifications resulting in incorrect formatting.
### 0.2.1 (2014-10-22 06:41:00 UTC)

View File

@ -4250,6 +4250,7 @@ class Home(MainHandler):
if int(status) == WANTED:
msg = "Backlog was automatically started for the following seasons of <b>" + showObj.name + "</b>:<br />"
msg += '<ul>'
for season, segment in segments.items():
cur_backlog_queue_item = search_queue.BacklogQueueItem(showObj, segment)
@ -4266,6 +4267,7 @@ class Home(MainHandler):
if int(status) == FAILED:
msg = "Retrying Search was automatically started for the following season of <b>" + showObj.name + "</b>:<br />"
msg += '<ul>'
for season, segment in segments.items():
cur_failed_queue_item = search_queue.FailedQueueItem(showObj, [segment])