diff options
author | SouLSLayeR <espilioto@users.noreply.github.com> | 2022-04-01 00:07:02 +0300 |
---|---|---|
committer | GitHub <noreply@github.com> | 2022-04-01 00:07:02 +0300 |
commit | 1275a8cce527fa02e32d9b490a12bafb38d95942 (patch) | |
tree | 378aad4745dd4c2242418962c0ec9b772d66ddb9 | |
parent | cd1fc28f515e17956668e5bda5f39c1d250e3475 (diff) | |
download | homer-1275a8cce527fa02e32d9b490a12bafb38d95942.tar.gz homer-1275a8cce527fa02e32d9b490a12bafb38d95942.tar.zst homer-1275a8cce527fa02e32d9b490a12bafb38d95942.zip |
Update src/components/services/Emby.vue
Co-authored-by: Bastien Wirtz <bastien.wirtz@gmail.com>
-rw-r--r-- | src/components/services/Emby.vue | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/components/services/Emby.vue b/src/components/services/Emby.vue index 8f2790b..25a2612 100644 --- a/src/components/services/Emby.vue +++ b/src/components/services/Emby.vue | |||
@@ -62,7 +62,7 @@ export default { | |||
62 | this.fetch("/System/info/public") | 62 | this.fetch("/System/info/public") |
63 | .then((response) => { | 63 | .then((response) => { |
64 | if (response.Id) this.status = "running"; | 64 | if (response.Id) this.status = "running"; |
65 | else this.status = "dead"; | 65 | else throw new Error(); |
66 | }) | 66 | }) |
67 | .catch((e) => { | 67 | .catch((e) => { |
68 | console.log(e); | 68 | console.log(e); |