Fix audio and video call buttons in conversation

GitLab: #105
Change-Id: Ic1fcd4143abbc77588c8eb41936aac7b27c67c35
diff --git a/client/src/components/ConversationView.tsx b/client/src/components/ConversationView.tsx
index fc0ee9b..4ecffe8 100644
--- a/client/src/components/ConversationView.tsx
+++ b/client/src/components/ConversationView.tsx
@@ -134,7 +134,7 @@
   }, [account, members, adminTitle, t]);
 
   const startCall = (withVideo = false) => {
-    let url = `/deprecated-account/${account.getId()}/call/${conversationId}`;
+    let url = `/account/call/${conversationId}`;
     if (withVideo) {
       url += '?video=true';
     }