From 280535161e03c2f796b87f4111c9e38b76b54337 Mon Sep 17 00:00:00 2001 From: M66B Date: Sat, 14 Feb 2015 20:48:43 +0100 Subject: [PATCH] Fix new IP prefix restrictions Refs #1757 --- src/biz/bokhorst/xprivacy/XIpPrefix.java | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/biz/bokhorst/xprivacy/XIpPrefix.java b/src/biz/bokhorst/xprivacy/XIpPrefix.java index e1f0d26ed..fddc22595 100644 --- a/src/biz/bokhorst/xprivacy/XIpPrefix.java +++ b/src/biz/bokhorst/xprivacy/XIpPrefix.java @@ -10,7 +10,7 @@ public class XIpPrefix extends XHook { private Methods mMethod; private XIpPrefix(Methods method, String restrictionName) { - super(restrictionName, "IpPrefix." + method.name(), null); + super(restrictionName, method.name(), "IpPrefix." + method.name()); mMethod = method; }