Skip to content

Commit

Permalink
Merge pull request TryGhost#5538 from halfdan/feature/app-watch
Browse files Browse the repository at this point in the history
Change Grunt watch, new rss.item filter
  • Loading branch information
ErisDS committed Jul 14, 2015
2 parents 5998f31 + 88a7cdb commit 2bdaf77
Showing 1 changed file with 3 additions and 1 deletion.
4 changes: 3 additions & 1 deletion core/server/data/xml/rss/index.js
Original file line number Diff line number Diff line change
Expand Up @@ -179,7 +179,9 @@ generateFeed = function generateFeed(data) {
}
});

feed.item(item);
filters.doFilter('rss.item', item, post).then(function then(item) {
feed.item(item);
});
});

return filters.doFilter('rss.feed', feed).then(function then(feed) {
Expand Down

0 comments on commit 2bdaf77

Please sign in to comment.