mirror of
https://github.com/EGroupware/egroupware.git
synced 2025-02-22 21:30:54 +01:00
fix exception stalling new installations
This commit is contained in:
parent
94132c68be
commit
8d5d178869
@ -111,6 +111,11 @@ class Applications
|
|||||||
*/
|
*/
|
||||||
public static function invalidate()
|
public static function invalidate()
|
||||||
{
|
{
|
||||||
Api\Cache::unsetInstance(__CLASS__, 'apps');
|
try {
|
||||||
|
Api\Cache::unsetInstance(__CLASS__, 'apps');
|
||||||
|
}
|
||||||
|
catch (\Exception $e) {
|
||||||
|
// ignore exceptions caused by not existing install_id during installation
|
||||||
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
Loading…
Reference in New Issue
Block a user