diff options
Diffstat (limited to 'apps/theming/lib/Util.php')
-rw-r--r-- | apps/theming/lib/Util.php | 9 |
1 files changed, 1 insertions, 8 deletions
diff --git a/apps/theming/lib/Util.php b/apps/theming/lib/Util.php index e757d100a1b..57a90b026e8 100644 --- a/apps/theming/lib/Util.php +++ b/apps/theming/lib/Util.php @@ -250,13 +250,6 @@ class Util { public function isBackgroundThemed() { $backgroundLogo = $this->config->getAppValue('theming', 'backgroundMime', ''); - - $backgroundExists = true; - try { - $this->appData->getFolder('images')->getFile('background'); - } catch (\Exception $e) { - $backgroundExists = false; - } - return $backgroundLogo && $backgroundLogo !== 'backgroundColor' && $backgroundExists; + return $backgroundLogo !== '' && $backgroundLogo !== 'backgroundColor'; } } |