diff --git a/src/app/services/http/room.service.ts b/src/app/services/http/room.service.ts index 3f8b676d6e795b48074ddc3e503a21b4f92e16d6..aed1b90c4126e53f6a896dbd3f5da691202115b5 100644 --- a/src/app/services/http/room.service.ts +++ b/src/app/services/http/room.service.ts @@ -34,7 +34,7 @@ export class RoomService extends BaseHttpService { externalFilters: {} }).pipe( tap(() => ''), - catchError(this.handleError('getRooms', [])) + catchError(this.handleError('getCreatorRooms', [])) ); } @@ -45,7 +45,7 @@ export class RoomService extends BaseHttpService { externalFilters: { inHistoryOfUserId: this.authService.getUser().id } }).pipe( tap(() => ''), - catchError(this.handleError('getRooms', [])) + catchError(this.handleError('getParticipantRooms', [])) ); }