diff --git a/app/services/processor.py b/app/services/processor.py index 14ee41b..363c8d8 100644 --- a/app/services/processor.py +++ b/app/services/processor.py @@ -360,7 +360,7 @@ def rss(token, onstart=False): title='%s - http://%s%s' % (row.author_name, site.url, row.url), link=item_link, description=md.convert(row.content), - guid=PyRSS2Gen.Guid(item_link), + guid=PyRSS2Gen.Guid('%s/%d' % (item_link, row.id)), pubDate=row.published ))