mirror of
https://github.com/viq/NewsBlur.git
synced 2025-09-18 21:43:31 +00:00
Stringifying JSON feed ids (in case they're integers).
This commit is contained in:
parent
9abe68bc1c
commit
95366bcf99
1 changed files with 1 additions and 1 deletions
|
@ -49,7 +49,7 @@ class JSONFetcher:
|
|||
'description': item.get('content_html', item.get('content_text', None)),
|
||||
'author_name': item.get('author', {}).get('name', None),
|
||||
'categories': item.get('tags', []),
|
||||
'unique_id': item.get('id', item.get('url', None)),
|
||||
'unique_id': unicode(item.get('id', item.get('url', None))),
|
||||
'pubdate': date_published,
|
||||
}
|
||||
|
||||
|
|
Loading…
Add table
Reference in a new issue