diff options
author | Robin Appelman <robin@icewind.nl> | 2023-05-15 17:38:43 +0200 |
---|---|---|
committer | backportbot-nextcloud[bot] <backportbot-nextcloud[bot]@users.noreply.github.com> | 2023-05-23 07:41:40 +0000 |
commit | 21d50794f03fe777692a18533764979d18caf43e (patch) | |
tree | 924c026cd508eecf2c0f65511d3934c7362d7357 /apps/theming/lib | |
parent | 713b9603a4e36a41efa0cd2c0ba88e4fa6ab893f (diff) | |
download | nextcloud-server-21d50794f03fe777692a18533764979d18caf43e.tar.gz nextcloud-server-21d50794f03fe777692a18533764979d18caf43e.zip |
fix loading custom logo image
Signed-off-by: Robin Appelman <robin@icewind.nl>
Diffstat (limited to 'apps/theming/lib')
-rw-r--r-- | apps/theming/lib/Util.php | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/apps/theming/lib/Util.php b/apps/theming/lib/Util.php index 789da394567..635c0026112 100644 --- a/apps/theming/lib/Util.php +++ b/apps/theming/lib/Util.php @@ -190,7 +190,7 @@ class Util { if ($this->config->getAppValue('theming', 'logoMime', '') !== '') { $logoFile = null; try { - $folder = $this->appData->getFolder('images'); + $folder = $this->appData->getFolder('global/images'); return $folder->getFile('logo'); } catch (NotFoundException $e) { } |