diff options
| author | 2021-08-30 08:02:39 +0200 | |
|---|---|---|
| committer | 2021-08-30 08:02:39 +0200 | |
| commit | 812eda1fa05e370c4c1645b5b82f09f9da2c7bf7 (patch) | |
| tree | cd5ffb4515958d7aa33afc2c396f012d7549a1df | |
| parent | dfe90cba867fc09e6eba81f000743cb5207e19fe (diff) | |
Fix wrong method name (#3808)
Fix error from https://github.com/FreshRSS/FreshRSS/pull/2275 but that line was not used just yet anyway
| -rw-r--r-- | app/Models/Entry.php | 2 |
1 files changed, 1 insertions, 1 deletions
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 |
