- client: empty disallowed_clients

This commit is contained in:
Ildar Kamalov 2020-02-13 18:54:28 +03:00
parent 7a3eda02ce
commit d8f8e6b94a
1 changed files with 1 additions and 1 deletions

View File

@ -55,7 +55,7 @@ export const toggleClientBlock = (type, ip) => async (dispatch) => {
const {
allowed_clients, disallowed_clients, blocked_hosts,
} = await apiClient.getAccessList();
let updatedDisallowedClients = disallowed_clients;
let updatedDisallowedClients = disallowed_clients || [];
if (type === ACTION.unblock && updatedDisallowedClients.includes(ip)) {
updatedDisallowedClients = updatedDisallowedClients.filter(client => client !== ip);