aboutsummaryrefslogtreecommitdiff
path: root/app/Models/Themes.php
diff options
context:
space:
mode:
authorGravatar maTh <math-home@web.de> 2022-11-03 22:36:13 +0100
committerGravatar GitHub <noreply@github.com> 2022-11-03 22:36:13 +0100
commitca6c9345b2932b1f955d9d037fa6ed136e84bdc6 (patch)
tree360c2284deb60a82f12201dd046a31bbd9ae38b8 /app/Models/Themes.php
parentb1f946367359fb1f69ec8687bebcb5f12339f985 (diff)
fix: dyn. OPML icon (#4810)
* fix
Diffstat (limited to 'app/Models/Themes.php')
-rw-r--r--app/Models/Themes.php4
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;