Don't return a filename when it wasn't stored

This commit is contained in:
Michael 2022-05-09 08:47:02 +00:00
parent f744dd362d
commit f785026289

View File

@ -124,6 +124,11 @@ class Avatar
DI::profiler()->stopRecording();
if (!file_exists($filepath)) {
Logger::notice('Avatar cache file could not be stored', ['file' => $filepath]);
return '';
}
return DI::baseUrl() . $path;
}