mirror of
https://github.com/AdguardTeam/AdGuardHome.git
synced 2025-03-14 22:48:35 +03:00
- client: save in store dnsStatus even if running false
This commit is contained in:
parent
242e5e136f
commit
39640d8190
1 changed files with 1 additions and 2 deletions
|
@ -245,8 +245,7 @@ export const getDnsStatus = () => async (dispatch) => {
|
|||
|
||||
const handleRequestSuccess = (response) => {
|
||||
const dnsStatus = response.data;
|
||||
const runningStatus = dnsStatus && dnsStatus.running;
|
||||
if (runningStatus === true) {
|
||||
if (dnsStatus) {
|
||||
dispatch(dnsStatusSuccess(dnsStatus));
|
||||
dispatch(getVersion());
|
||||
dispatch(getTlsStatus());
|
||||
|
|
Loading…
Add table
Reference in a new issue