Skip to content
Snippets Groups Projects
Commit 954d16d7 authored by Lukas Mauß's avatar Lukas Mauß
Browse files

Modify getRooms-error messanges

parent 3769595a
1 merge request!117Resolve "Content creation refactoring"
Pipeline #20555 passed with stages
in 3 minutes and 44 seconds
...@@ -34,7 +34,7 @@ export class RoomService extends BaseHttpService { ...@@ -34,7 +34,7 @@ export class RoomService extends BaseHttpService {
externalFilters: {} externalFilters: {}
}).pipe( }).pipe(
tap(() => ''), tap(() => ''),
catchError(this.handleError('getRooms', [])) catchError(this.handleError('getCreatorRooms', []))
); );
} }
...@@ -45,7 +45,7 @@ export class RoomService extends BaseHttpService { ...@@ -45,7 +45,7 @@ export class RoomService extends BaseHttpService {
externalFilters: { inHistoryOfUserId: this.authService.getUser().id } externalFilters: { inHistoryOfUserId: this.authService.getUser().id }
}).pipe( }).pipe(
tap(() => ''), tap(() => ''),
catchError(this.handleError('getRooms', [])) catchError(this.handleError('getParticipantRooms', []))
); );
} }
......
0% or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment