synchronous feed update: catch PDO exceptions as to not break headlines output
This commit is contained in:
parent
83a052f1fa
commit
1c1fc17120
|
@ -202,7 +202,11 @@ class Feeds extends Handler_Protected {
|
||||||
$cache_images = $row["cache_images"];
|
$cache_images = $row["cache_images"];
|
||||||
|
|
||||||
if (!$cache_images && time() - $last_updated > 120) {
|
if (!$cache_images && time() - $last_updated > 120) {
|
||||||
|
try {
|
||||||
RSSUtils::update_rss_feed($feed, true);
|
RSSUtils::update_rss_feed($feed, true);
|
||||||
|
} catch (PDOException $e) {
|
||||||
|
user_error("PDO Exception while doing on-demand feed update for $feed: " . $e->getMessage(), E_USER_NOTICE);
|
||||||
|
}
|
||||||
} else {
|
} else {
|
||||||
$sth = $this->pdo->prepare("UPDATE ttrss_feeds
|
$sth = $this->pdo->prepare("UPDATE ttrss_feeds
|
||||||
SET last_updated = '1970-01-01', last_update_started = '1970-01-01'
|
SET last_updated = '1970-01-01', last_update_started = '1970-01-01'
|
||||||
|
|
Loading…
Reference in New Issue