From 954d16d7dc192568bbbf6801549aba5887361f85 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Lukas=20Mau=C3=9F?= <lukas.mauss@mni.thm.de> Date: Mon, 12 Nov 2018 11:36:34 +0100 Subject: [PATCH] Modify getRooms-error messanges --- src/app/services/http/room.service.ts | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/app/services/http/room.service.ts b/src/app/services/http/room.service.ts index 3f8b676d6..aed1b90c4 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', [])) ); } -- GitLab