From e9f879b411ac6af9d102702fb52c8deff161b0e6 Mon Sep 17 00:00:00 2001 From: Alexandre Alapetite Date: Sat, 29 Feb 2020 18:14:29 +0100 Subject: Fallback to GUID when entry title is empty (#2813) When entries have an empty title, our UI was a bit broken. In this (rare) case, we revert to GUID, which is always non-empty. --- app/Models/Entry.php | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'app/Models/Entry.php') diff --git a/app/Models/Entry.php b/app/Models/Entry.php index 45ff7b8c2..af130578f 100644 --- a/app/Models/Entry.php +++ b/app/Models/Entry.php @@ -43,7 +43,7 @@ class FreshRSS_Entry extends Minz_Model { return $this->guid; } public function title() { - return $this->title; + return $this->title == '' ? $this->guid() : $this->title; } public function author() { //Deprecated @@ -139,7 +139,7 @@ class FreshRSS_Entry extends Minz_Model { } public function _title($value) { $this->hash = null; - $this->title = $value; + $this->title = trim($value); } public function _author($value) { //Deprecated -- cgit v1.2.3