diff options
| author | 2022-11-03 22:36:13 +0100 | |
|---|---|---|
| committer | 2022-11-03 22:36:13 +0100 | |
| commit | ca6c9345b2932b1f955d9d037fa6ed136e84bdc6 (patch) | |
| tree | 360c2284deb60a82f12201dd046a31bbd9ae38b8 /app/Models/Themes.php | |
| parent | b1f946367359fb1f69ec8687bebcb5f12339f985 (diff) | |
fix: dyn. OPML icon (#4810)
* fix
Diffstat (limited to 'app/Models/Themes.php')
| -rw-r--r-- | app/Models/Themes.php | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/app/Models/Themes.php b/app/Models/Themes.php index f84b9b800..d652ada5b 100644 --- a/app/Models/Themes.php +++ b/app/Models/Themes.php @@ -144,9 +144,9 @@ class FreshRSS_Themes extends Minz_Model { } if ($type == self::ICON_DEFAULT) { - if ((FreshRSS_Context::$user_conf && FreshRSS_Context::$user_conf->icons_as_emojis) || + if ((FreshRSS_Context::$user_conf && FreshRSS_Context::$user_conf->icons_as_emojis) // default to emoji alternate for some icons - in_array($name, [ 'opml-dyn' ])) { + ) { $type = self::ICON_EMOJI; } else { $type = self::ICON_IMG; |
