From: Andrew Dolgov Date: Sun, 3 Dec 2017 10:32:24 +0000 (+0300) Subject: force article content/etc to string when updating to avoid failing null constraint... X-Git-Tag: 17.12~3 X-Git-Url: https://git.wh0rd.org/?p=tt-rss.git;a=commitdiff_plain;h=93e70e36c2420e62fdaf229e054aadd7bc981744 force article content/etc to string when updating to avoid failing null constraint check --- diff --git a/classes/rssutils.php b/classes/rssutils.php index 98f494d7..b6a00d30 100644 --- a/classes/rssutils.php +++ b/classes/rssutils.php @@ -879,14 +879,14 @@ class RSSUtils { $entry_guid_hashed, $entry_link, $entry_timestamp_fmt, - $entry_content, + "$entry_content", $entry_current_hash, $date_feed_processed, $entry_comments, (int)$num_comments, $entry_plugin_data, - $entry_language, - $entry_author]); + "$entry_language", + "$entry_author"]); } @@ -998,12 +998,12 @@ class RSSUtils { WHERE id = :id"); $sth->execute([":title" => $entry_title, - ":content" => $entry_content, + ":content" => "$entry_content", ":content_hash" => $entry_current_hash, ":updated" => $entry_timestamp_fmt, ":num_comments" => (int)$num_comments, ":plugin_data" => $entry_plugin_data, - ":author" => $entry_author, + ":author" => "$entry_author", ":lang" => $entry_language, ":id" => $ref_id]);