From 812eda1fa05e370c4c1645b5b82f09f9da2c7bf7 Mon Sep 17 00:00:00 2001 From: Alexandre Alapetite Date: Mon, 30 Aug 2021 08:02:39 +0200 Subject: Fix wrong method name (#3808) Fix error from https://github.com/FreshRSS/FreshRSS/pull/2275 but that line was not used just yet anyway --- app/Models/Entry.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/app/Models/Entry.php b/app/Models/Entry.php index 021ceedfb..9057cecf8 100644 --- a/app/Models/Entry.php +++ b/app/Models/Entry.php @@ -325,7 +325,7 @@ class FreshRSS_Entry extends Minz_Model { $this->_isRead(true); break; case 'star': - $this->_is_favorite(true); + $this->_isFavorite(true); break; case 'label': //TODO: Implement more actions -- cgit v1.2.3