Browse Source

Add of GUID field in History RSS feed

The NZO id is used as unique id for the history RSS feed to help some RSS readers (like Thunderbird) to identify articles when the link field is the same for all articles.
pull/175/head
manandre 12 years ago
committed by shypike
parent
commit
a0040f5dd5
  1. 1
      sabnzbd/interface.py

1
sabnzbd/interface.py

@ -2728,6 +2728,7 @@ def rss_history(url, limit=50, search=None):
item.link = history['url_info']
else:
item.link = url
item.guid = history['nzo_id']
stageLine = []
for stage in history['stage_log']:

Loading…
Cancel
Save