diff --git a/src/models/actions/create/CreateUser.ts b/src/models/actions/create/CreateUser.ts index a29fb62..d85a8ba 100644 --- a/src/models/actions/create/CreateUser.ts +++ b/src/models/actions/create/CreateUser.ts @@ -114,7 +114,7 @@ export class CreateUser { newUser.groups = await this.getGroups(); newUser.enabled = this.enabled; - if (!this.profilePic) { newUser.profilePic = `https://dev.lauf-fuer-kaya.de/lfk-logo.png`; } + if (!this.profilePic) { newUser.profilePic = `https://lauf-fuer-kaya.de/lfk-logo.png`; } else { newUser.profilePic = this.profilePic; } return newUser; diff --git a/src/models/actions/update/UpdateUser.ts b/src/models/actions/update/UpdateUser.ts index e5685eb..88f36c6 100644 --- a/src/models/actions/update/UpdateUser.ts +++ b/src/models/actions/update/UpdateUser.ts @@ -124,7 +124,7 @@ export class UpdateUser { user.phone = this.phone; user.groups = await this.getGroups(); - if (!this.profilePic) { user.profilePic = `https://dev.lauf-fuer-kaya.de/lfk-logo.png`; } + if (!this.profilePic) { user.profilePic = `https://lauf-fuer-kaya.de/lfk-logo.png`; } else { user.profilePic = this.profilePic; } return user;