diff --git a/client/stillbox/src/app/calls/player/call-player/call-player.component.ts b/client/stillbox/src/app/calls/player/call-player/call-player.component.ts index 4a2eb86..0e7a974 100644 --- a/client/stillbox/src/app/calls/player/call-player/call-player.component.ts +++ b/client/stillbox/src/app/calls/player/call-player/call-player.component.ts @@ -31,7 +31,11 @@ export class CallPlayerComponent { }); this.playing = true; this.au.src = this.callsSvc.callAudioURL(this.call.id); + console.log(this.au.src); this.au.load(); - this.au.play(); + this.au.play().then(null, (reason) => { + this.playing = false; + alert(reason); + }); } } diff --git a/client/stillbox/src/index.dev_nocsp.html b/client/stillbox/src/index.dev_nocsp.html new file mode 100644 index 0000000..a20dc26 --- /dev/null +++ b/client/stillbox/src/index.dev_nocsp.html @@ -0,0 +1,19 @@ + + + + + Stillbox + + + + + + + + + + + +