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:
parent
351b5a4351
commit
2f315545a3
@ -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;
|
||||
|
||||
Loading…
Reference in New Issue
Block a user