aboutsummaryrefslogtreecommitdiffhomepage
path: root/src/components/services/Emby.vue
diff options
context:
space:
mode:
authorBastien Wirtz <bastien.wirtz@gmail.com>2022-04-10 11:56:44 +0200
committerBastien Wirtz <bastien.wirtz@gmail.com>2022-04-30 15:39:36 +0200
commit4f56c2c11baad8f98c338989fb0cd8e5af78d0c8 (patch)
tree971b362eb335628d818a3faf14ba4a6d9749d850 /src/components/services/Emby.vue
parent049f85221e945b90bf87d21afe4d306839d65740 (diff)
downloadhomer-4f56c2c11baad8f98c338989fb0cd8e5af78d0c8.tar.gz
homer-4f56c2c11baad8f98c338989fb0cd8e5af78d0c8.tar.zst
homer-4f56c2c11baad8f98c338989fb0cd8e5af78d0c8.zip
Handle 404 error on config file.
Diffstat (limited to 'src/components/services/Emby.vue')
-rw-r--r--src/components/services/Emby.vue2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/components/services/Emby.vue b/src/components/services/Emby.vue
index 25a2612..d2411f0 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 throw new Error(); 65 else throw new Error();
66 }) 66 })
67 .catch((e) => { 67 .catch((e) => {
68 console.log(e); 68 console.log(e);