mirror of
https://github.com/moparisthebest/SickRage
synced 2024-12-12 11:02:21 -05:00
Fix missing HTML in notifications resulting in incorrect formatting.
This commit is contained in:
parent
15fff14355
commit
a1ce52df8f
@ -79,6 +79,7 @@
|
|||||||
* Update PNotify to version [2.0.1]
|
* Update PNotify to version [2.0.1]
|
||||||
* Change the notification popups to always show the close button.
|
* 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 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)
|
### 0.2.1 (2014-10-22 06:41:00 UTC)
|
||||||
|
|
||||||
|
@ -4250,6 +4250,7 @@ class Home(MainHandler):
|
|||||||
|
|
||||||
if int(status) == WANTED:
|
if int(status) == WANTED:
|
||||||
msg = "Backlog was automatically started for the following seasons of <b>" + showObj.name + "</b>:<br />"
|
msg = "Backlog was automatically started for the following seasons of <b>" + showObj.name + "</b>:<br />"
|
||||||
|
msg += '<ul>'
|
||||||
|
|
||||||
for season, segment in segments.items():
|
for season, segment in segments.items():
|
||||||
cur_backlog_queue_item = search_queue.BacklogQueueItem(showObj, segment)
|
cur_backlog_queue_item = search_queue.BacklogQueueItem(showObj, segment)
|
||||||
@ -4266,6 +4267,7 @@ class Home(MainHandler):
|
|||||||
|
|
||||||
if int(status) == FAILED:
|
if int(status) == FAILED:
|
||||||
msg = "Retrying Search was automatically started for the following season of <b>" + showObj.name + "</b>:<br />"
|
msg = "Retrying Search was automatically started for the following season of <b>" + showObj.name + "</b>:<br />"
|
||||||
|
msg += '<ul>'
|
||||||
|
|
||||||
for season, segment in segments.items():
|
for season, segment in segments.items():
|
||||||
cur_failed_queue_item = search_queue.FailedQueueItem(showObj, [segment])
|
cur_failed_queue_item = search_queue.FailedQueueItem(showObj, [segment])
|
||||||
|
Loading…
Reference in New Issue
Block a user