diff --git a/fakedns.py b/fakedns.py
index db720ef..e8c5a54 100755
--- a/fakedns.py
+++ b/fakedns.py
@@ -419,6 +419,9 @@ class RuleEngine2:
if rule_type.upper() == "AAAA":
tmp_ip_array = []
for ip in ips:
+ if ip.lower() == 'none':
+ tmp_ip_array.append(ip)
+ continue
if _is_shorthand_ip(ip):
ip = _explode_shorthand_ip_string(ip)
guess this minimal patch would do