From 8707e04c556fe80af44c83f71204dfd785f48d8d Mon Sep 17 00:00:00 2001 From: donmahallem Date: Sun, 8 Jan 2017 18:26:55 +0100 Subject: [PATCH] If domain removal fails unhide the domain Currently the domain keeps hidden if the domain removal fails. --- scripts/pi-hole/js/list.js | 1 + 1 file changed, 1 insertion(+) diff --git a/scripts/pi-hole/js/list.js b/scripts/pi-hole/js/list.js index de2692ad0..9db85ffbe 100644 --- a/scripts/pi-hole/js/list.js +++ b/scripts/pi-hole/js/list.js @@ -21,6 +21,7 @@ function sub(index, entry) { }, error: function(jqXHR, exception) { alert("Failed to remove the domain!"); + domain.show({queue:true}); } }); }