From f3d8f0dfb51bcb2dc6a91565701a5741d64d8456 Mon Sep 17 00:00:00 2001 From: DL6ER Date: Wed, 18 Sep 2019 00:36:03 +0200 Subject: [PATCH] Teleporter expects adlist.json during import, however, the file is called adlists.json during export. Fix this by using singular during export. Signed-off-by: DL6ER --- scripts/pi-hole/php/teleporter.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/scripts/pi-hole/php/teleporter.php b/scripts/pi-hole/php/teleporter.php index 8e140bce..87e7752b 100644 --- a/scripts/pi-hole/php/teleporter.php +++ b/scripts/pi-hole/php/teleporter.php @@ -339,7 +339,7 @@ else archive_add_table("whitelist.regex.json", "regex_whitelist"); archive_add_table("blacklist.exact.json", "blacklist"); archive_add_table("blacklist.regex.json", "regex_blacklist"); - archive_add_table("adlists.json", "adlist"); + archive_add_table("adlist.json", "adlist"); archive_add_table("domain_audit.json", "domain_audit"); archive_add_file("/etc/pihole/","setupVars.conf"); archive_add_directory("/etc/dnsmasq.d/","dnsmasq.d/");