From ae56415c4b04581c47b7890af02786199a6370c5 Mon Sep 17 00:00:00 2001 From: Christopher Poile Date: Wed, 7 Dec 2022 14:31:22 -0500 Subject: [PATCH] MM-48915 - Calls: Add mobilev2 param to two requests (#6845) --- app/products/calls/client/rest.ts | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/app/products/calls/client/rest.ts b/app/products/calls/client/rest.ts index 3403789b9..759521ef6 100644 --- a/app/products/calls/client/rest.ts +++ b/app/products/calls/client/rest.ts @@ -36,14 +36,14 @@ const ClientCalls = (superclass: any) => class extends superclass { getCalls = async () => { return this.doFetch( - `${this.getCallsRoute()}/channels`, + `${this.getCallsRoute()}/channels?mobilev2=true`, {method: 'get'}, ); }; getCallForChannel = async (channelId: string) => { return this.doFetch( - `${this.getCallsRoute()}/${channelId}`, + `${this.getCallsRoute()}/${channelId}?mobilev2=true`, {method: 'get'}, ); };