forked from GitHub/dbot
Don't crash when rss feed item does not contain pubdate
This commit is contained in:
parent
a2a025ad55
commit
0a914c820a
@ -47,6 +47,10 @@ var rss = function(dbot) {
|
||||
item;
|
||||
|
||||
while (item = stream.read()) {
|
||||
// If the feed does not give a pubdate for this post, ignore it...
|
||||
if(!item.pubdate) {
|
||||
return;
|
||||
}
|
||||
if(item.pubdate.getTime() - feed.lastPosted > 0) {
|
||||
if(item.pubdate.getTime() > feed.newTime) {
|
||||
feed.newTime = item.pubdate.getTime();
|
||||
|
Loading…
Reference in New Issue
Block a user