We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
2 parents b359212 + a8c63a3 commit 09ff71dCopy full SHA for 09ff71d
factory/post.js
@@ -24,7 +24,7 @@ function processContent(data) {
24
for (var i = 0; i < entries.length; i++) {
25
var item = entries[i],
26
postTitle = item.title.$t,
27
- content = item.content.$t,
+ summary = item.summary.$t,
28
// Do not assume the link will always remain item 4 in the array
29
url = _.filter(item.link, function (link) {
30
return link.rel === 'alternate' && link.type === 'text/html';
@@ -35,7 +35,7 @@ function processContent(data) {
35
var story = {
36
url: url,
37
headline: postTitle,
38
- content: content,
+ summary: summary,
39
timePublished: timePublished,
40
timeUpdated: timeUpdated
41
};
0 commit comments