diff options
Diffstat (limited to 'src/components/services/Radarr.vue')
-rw-r--r-- | src/components/services/Radarr.vue | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/components/services/Radarr.vue b/src/components/services/Radarr.vue index a57c895..a8c97c1 100644 --- a/src/components/services/Radarr.vue +++ b/src/components/services/Radarr.vue | |||
@@ -48,7 +48,7 @@ export default { | |||
48 | }, | 48 | }, |
49 | methods: { | 49 | methods: { |
50 | fetchConfig: function () { | 50 | fetchConfig: function () { |
51 | this.fetch(`/api/health?apikey=${this.item.apikey}`) | 51 | this.fetch(`/api/v3/health?apikey=${this.item.apikey}`) |
52 | .then((health) => { | 52 | .then((health) => { |
53 | this.warnings = 0; | 53 | this.warnings = 0; |
54 | this.errors = 0; | 54 | this.errors = 0; |
@@ -64,7 +64,7 @@ export default { | |||
64 | console.error(e); | 64 | console.error(e); |
65 | this.serverError = true; | 65 | this.serverError = true; |
66 | }); | 66 | }); |
67 | this.fetch(`/api/queue?apikey=${this.item.apikey}`) | 67 | this.fetch(`/api/v3/queue?apikey=${this.item.apikey}`) |
68 | .then((queue) => { | 68 | .then((queue) => { |
69 | this.activity = 0; | 69 | this.activity = 0; |
70 | for (var i = 0; i < queue.length; i++) { | 70 | for (var i = 0; i < queue.length; i++) { |