fix overlength summaries
parent
86787d85ea
commit
07508faf1a
|
@ -69,9 +69,16 @@ async function do_feeds() {
|
||||||
item.content = item.summary;
|
item.content = item.summary;
|
||||||
}
|
}
|
||||||
|
|
||||||
if(!item.description
|
if(typeof item.description !== "string") {
|
||||||
|| (typeof item.description == "string" && item.description.length === 0)) item.description = striptags(item.content)
|
if(typeof item.summary === "string")
|
||||||
.substring(0, DESCRIPTION_LENGTH);
|
item.description = item.summary;
|
||||||
|
else if(typeof item.content === "string")
|
||||||
|
item.description = item.content;
|
||||||
|
}
|
||||||
|
|
||||||
|
item.description = striptags(item.content)
|
||||||
|
.substring(0, DESCRIPTION_LENGTH);
|
||||||
|
|
||||||
|
|
||||||
if(!item.pubdate) item.pubdate = item.published
|
if(!item.pubdate) item.pubdate = item.published
|
||||||
|| item.updated
|
|| item.updated
|
||||||
|
|
Loading…
Reference in New Issue