summaryrefslogtreecommitdiff
path: root/app/src/main/java/de/blinkt/openvpn/core/OpenVPNService.java
diff options
context:
space:
mode:
authorcyBerta <cyberta@riseup.net>2019-12-30 17:16:14 +0100
committercyBerta <cyberta@riseup.net>2019-12-30 17:16:14 +0100
commit988bd203ee14a589eef58a4aa6bd51a5b005d072 (patch)
tree374ca8b476c5275ebe7d93d25a575fa8a29e12ba /app/src/main/java/de/blinkt/openvpn/core/OpenVPNService.java
parent22eb43939a8bcae2ed7f89d37abf023fc33c485f (diff)
reduce su calls, add logging, save if su exists and was allowed to preferences
Diffstat (limited to 'app/src/main/java/de/blinkt/openvpn/core/OpenVPNService.java')
-rw-r--r--app/src/main/java/de/blinkt/openvpn/core/OpenVPNService.java2
1 files changed, 1 insertions, 1 deletions
diff --git a/app/src/main/java/de/blinkt/openvpn/core/OpenVPNService.java b/app/src/main/java/de/blinkt/openvpn/core/OpenVPNService.java
index 724fd0fd..766dc925 100644
--- a/app/src/main/java/de/blinkt/openvpn/core/OpenVPNService.java
+++ b/app/src/main/java/de/blinkt/openvpn/core/OpenVPNService.java
@@ -518,7 +518,7 @@ public class OpenVPNService extends VpnService implements StateListener, Callbac
super.onCreate();
notificationManager = new VpnNotificationManager(this, this);
notificationManager.createOpenVpnNotificationChannel();
- firewallHelper = new FirewallHelper();
+ firewallHelper = new FirewallHelper(this);
}
@Override