mirror of https://github.com/bastienwirtz/homer
set this.status after checking the response is OK
parent
4684b23a8c
commit
59b0ed7688
|
@ -170,11 +170,11 @@ export default {
|
||||||
|
|
||||||
const url = `${this.endpoint}/${`api/stats/summary?sid=${encodeURIComponent(this.sessionId)}`.replace(/^\/+/, '')}`;
|
const url = `${this.endpoint}/${`api/stats/summary?sid=${encodeURIComponent(this.sessionId)}`.replace(/^\/+/, '')}`;
|
||||||
const response = await fetch(url);
|
const response = await fetch(url);
|
||||||
this.status = "enabled";
|
|
||||||
|
|
||||||
if (response.ok) {
|
if (response.ok) {
|
||||||
const result = await response.json();
|
const result = await response.json();
|
||||||
if (result?.queries?.percent_blocked !== undefined) {
|
if (result?.queries?.percent_blocked !== undefined) {
|
||||||
|
this.status = "enabled";
|
||||||
this.percent_blocked = result.queries.percent_blocked;
|
this.percent_blocked = result.queries.percent_blocked;
|
||||||
this.retryCount = 0;
|
this.retryCount = 0;
|
||||||
} else {
|
} else {
|
||||||
|
|
Loading…
Reference in New Issue