workadventure/front/src/Stores/Errors/WebviewOnOldIOS.ts

11 lines
334 B
TypeScript
Raw Normal View History

export class WebviewOnOldIOS extends Error {
2021-09-06 14:27:54 +02:00
static NAME = "WebviewOnOldIOS";
constructor() {
2021-09-06 14:27:54 +02:00
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;
}
}