0
Fork 0
mirror of https://github.com/TryGhost/Ghost.git synced 2025-01-20 22:42:53 -05:00

Merge pull request #5538 from halfdan/feature/app-watch

Change Grunt watch, new rss.item filter
This commit is contained in:
Hannah Wolfe 2015-07-14 09:20:47 +01:00
commit 2bdaf773e2

View file

@ -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) {