Skip to content

Commit

Permalink
Fix RSS Feeds
Browse files Browse the repository at this point in the history
  • Loading branch information
Jovanka committed Aug 29, 2024
1 parent db7fb4a commit 49a2d6e
Show file tree
Hide file tree
Showing 3 changed files with 8 additions and 2 deletions.
6 changes: 6 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,12 @@

## Development

## [0.1.9](https://github.com/berlinonline/ckanext-datasetsnippets/releases/tag/0.1.9)

_(2024-08-29)_

- Fix for RSS Feeds

## [0.1.8](https://github.com/berlinonline/ckanext-datasetsnippets/releases/tag/0.1.8)

_(2024-08-29)_
Expand Down
2 changes: 1 addition & 1 deletion ckanext/datasetsnippets/VERSION
Original file line number Diff line number Diff line change
@@ -1 +1 @@
0.1.8
0.1.9
2 changes: 1 addition & 1 deletion ckanext/datasetsnippets/blueprints/feeds.py
Original file line number Diff line number Diff line change
Expand Up @@ -172,7 +172,7 @@ def output_feed(results, feed_title, feed_description, feed_link, feed_url,
description=pkg.get(u'notes', u''),
updated=h.date_str_to_datetime(pkg.get(u'metadata_modified')),
published=h.date_str_to_datetime(pkg.get(u'metadata_created')),
unique_id=_create_rss_id(u'/dataset/%s' % pkg['id']),
unique_id=_create_rss_id(u'/datensaetze/%s' % pkg['id']),
author_name=pkg.get(u'author', u''),
author_email=pkg.get(u'author_email', u''),
categories=[t[u'name'] for t in pkg.get(u'tags', [])],
Expand Down

0 comments on commit 49a2d6e

Please sign in to comment.