Blank titles are filled with the url
This commit is contained in:
parent
00644bb2b8
commit
5ada718357
2
miniflux/vendor/PicoFeed/Parsers/Atom.php
vendored
2
miniflux/vendor/PicoFeed/Parsers/Atom.php
vendored
@ -39,6 +39,8 @@ class Atom extends Parser
|
|||||||
$item->author = $author;
|
$item->author = $author;
|
||||||
$item->content = $this->filterHtml($this->getContent($entry), $item->url);
|
$item->content = $this->filterHtml($this->getContent($entry), $item->url);
|
||||||
|
|
||||||
|
if (empty($item->title)) $item->title = $item->url;
|
||||||
|
|
||||||
$this->items[] = $item;
|
$this->items[] = $item;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
3
miniflux/vendor/PicoFeed/Parsers/Rss10.php
vendored
3
miniflux/vendor/PicoFeed/Parsers/Rss10.php
vendored
@ -9,7 +9,6 @@ class Rss10 extends Parser
|
|||||||
$this->content = $this->normalizeData($this->content);
|
$this->content = $this->normalizeData($this->content);
|
||||||
|
|
||||||
\libxml_use_internal_errors(true);
|
\libxml_use_internal_errors(true);
|
||||||
|
|
||||||
$xml = \simplexml_load_string($this->content);
|
$xml = \simplexml_load_string($this->content);
|
||||||
|
|
||||||
if ($xml === false) {
|
if ($xml === false) {
|
||||||
@ -74,6 +73,8 @@ class Rss10 extends Parser
|
|||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
if (empty($item->title)) $item->title = $item->url;
|
||||||
|
|
||||||
$item->id = $item->url;
|
$item->id = $item->url;
|
||||||
$item->content = $this->filterHtml($item->content, $item->url);
|
$item->content = $this->filterHtml($item->content, $item->url);
|
||||||
$this->items[] = $item;
|
$this->items[] = $item;
|
||||||
|
2
miniflux/vendor/PicoFeed/Parsers/Rss20.php
vendored
2
miniflux/vendor/PicoFeed/Parsers/Rss20.php
vendored
@ -91,6 +91,8 @@ class Rss20 extends Parser
|
|||||||
$item->id = $item->url;
|
$item->id = $item->url;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
if (empty($item->title)) $item->title = $item->url;
|
||||||
|
|
||||||
$item->content = $this->filterHtml($item->content, $item->url);
|
$item->content = $this->filterHtml($item->content, $item->url);
|
||||||
$this->items[] = $item;
|
$this->items[] = $item;
|
||||||
}
|
}
|
||||||
|
Loading…
Reference in New Issue
Block a user