fix not shown/found custom images

This commit is contained in:
ralf 2024-09-13 12:05:27 +02:00
parent 4f7b6d6b0b
commit d1dc372e8d

View File

@ -95,7 +95,7 @@ egw.extend('images', egw.MODULE_GLOBAL, function()
// own instance specific images in vfs have the highest precedence
tries.vfs = _name;
if (typeof images.vfs !== 'undefined' && images.vfs[_name] === 'string')
if (typeof images.vfs !== 'undefined' && typeof images.vfs[_name] === 'string')
{
return this.webserverUrl+images.vfs[_name];
}