We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent cd16ef2 commit d55dee0Copy full SHA for d55dee0
index.js
@@ -153,15 +153,15 @@ var decorateItunes = function decorateItunes(json, channel) {
153
}
154
PODCAST_TOP_FIELDS.forEach(function(f) {
155
if (channel['itunes:' + f]) json.feed.itunes[f] = channel['itunes:' + f][0];
156
- })
+ });
157
(items).forEach(function(item, index) {
158
entry = json.feed.entries[index];
159
PODCAST_ITEM_FIELDS.forEach(function(f) {
160
entry.itunes = entry.itunes || {};
161
if (item['itunes:' + f]) entry.itunes[f] = item['itunes:' + f][0];
162
163
json.feed.entries[index] = entry;
164
165
166
167
Parser.parseString = function(xml, callback) {
0 commit comments