diff --git a/src/lib/services/user-splash-service.ts b/src/lib/services/user-splash-service.ts index 7ce7be52ab..247e6439d8 100644 --- a/src/lib/services/user-splash-service.ts +++ b/src/lib/services/user-splash-service.ts @@ -45,6 +45,11 @@ export default class UserSplashService { } async updateSplash(splash: IUserSplash): Promise { - return this.userSplashStore.updateSplash(splash); + try { + return this.userSplashStore.updateSplash(splash); + } catch (err) { + this.logger.warn(err); + return splash; + } } }