1
0
Fork 0
mirror of https://github.com/bastienwirtz/homer.git synced 2026-01-23 02:15:09 +00:00

set this.status after checking the response is OK

This commit is contained in:
Molham 2025-04-19 14:48:10 +02:00 committed by Bastien Wirtz
parent 4684b23a8c
commit 59b0ed7688

View file

@ -170,11 +170,11 @@ export default {
const url = `${this.endpoint}/${`api/stats/summary?sid=${encodeURIComponent(this.sessionId)}`.replace(/^\/+/, '')}`;
const response = await fetch(url);
this.status = "enabled";
if (response.ok) {
const result = await response.json();
if (result?.queries?.percent_blocked !== undefined) {
this.status = "enabled";
this.percent_blocked = result.queries.percent_blocked;
this.retryCount = 0;
} else {