mirror of
https://github.com/Stremio/stremio-web.git
synced 2026-03-11 21:27:05 +00:00
log servises init error
This commit is contained in:
parent
f8e907ec31
commit
cd464fa5f3
2 changed files with 4 additions and 2 deletions
|
|
@ -18,8 +18,9 @@ function Chromecast() {
|
|||
onStateChanged();
|
||||
}
|
||||
function onTransportError(args) {
|
||||
console.error(args);
|
||||
active = false;
|
||||
error = new Error(`Google Cast API not available: ${args}`);
|
||||
error = new Error('Google Cast API not available');
|
||||
starting = false;
|
||||
onStateChanged();
|
||||
transport = null;
|
||||
|
|
|
|||
|
|
@ -18,8 +18,9 @@ function Core() {
|
|||
onStateChanged();
|
||||
}
|
||||
function onTransportError(args) {
|
||||
console.error(args);
|
||||
active = false;
|
||||
error = new Error(`Stremio Core Transport initialization failed: ${args}`);
|
||||
error = new Error('Stremio Core Transport initialization failed');
|
||||
starting = false;
|
||||
onStateChanged();
|
||||
transport = null;
|
||||
|
|
|
|||
Loading…
Reference in a new issue