We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 1fbf8e2 commit 5dfc89dCopy full SHA for 5dfc89d
src/room/GroupCallView.tsx
@@ -185,7 +185,7 @@ export const GroupCallView: FC<Props> = ({
185
} else {
186
logger.error(`Unknown Error while entering RTC session`, e);
187
const error = new ElementCallError(
188
- e.message,
+ e instanceof Error ? e.message : "Unknown error",
189
ErrorCode.UNKNOWN_ERROR,
190
ErrorCategory.UNKNOWN,
191
);
0 commit comments