fix https://github.com/FreshRSS/FreshRSS/issues/5928 `susbstr` might return false in PHP7 Regression from https://github.com/FreshRSS/FreshRSS/pull/5830
@@ -580,7 +580,7 @@ class FreshRSS_Feed extends Minz_Model {
}
- $authorNames = substr($authorNames, 0, -2);
+ $authorNames = substr($authorNames, 0, -2) ?: '';
$entry = new FreshRSS_Entry(
$this->id(),