1
0
mirror of https://github.com/Unleash/unleash.git synced 2025-11-10 01:19:53 +01:00

fix: missing await in user splash update (#10878)

This commit is contained in:
Mateusz Kwasniewski 2025-10-28 09:43:17 +01:00 committed by GitHub
parent 351b5a4351
commit 2f315545a3
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194

View File

@ -46,7 +46,7 @@ export default class UserSplashService {
async updateSplash(splash: IUserSplash): Promise<IUserSplash> {
try {
return this.userSplashStore.updateSplash(splash);
return await this.userSplashStore.updateSplash(splash);
} catch (err) {
this.logger.warn(err);
return splash;