workadventure/front/src/Stores/Errors/WebviewOnOldIOS.ts
2021-09-06 14:31:59 +02:00

11 lines
334 B
TypeScript

export class WebviewOnOldIOS extends Error {
static NAME = "WebviewOnOldIOS";
constructor() {
super(
"Your iOS version cannot use video/audio in the browser unless you are using Safari. Please switch to Safari or upgrade iOS to 14.3 or above."
);
this.name = WebviewOnOldIOS.NAME;
}
}