diff options
author | cyBerta <cyberta@riseup.net> | 2019-12-30 17:16:14 +0100 |
---|---|---|
committer | cyBerta <cyberta@riseup.net> | 2019-12-30 17:16:14 +0100 |
commit | 988bd203ee14a589eef58a4aa6bd51a5b005d072 (patch) | |
tree | 374ca8b476c5275ebe7d93d25a575fa8a29e12ba /app/src/main/java/de/blinkt | |
parent | 22eb43939a8bcae2ed7f89d37abf023fc33c485f (diff) |
reduce su calls, add logging, save if su exists and was allowed to preferences
Diffstat (limited to 'app/src/main/java/de/blinkt')
-rw-r--r-- | app/src/main/java/de/blinkt/openvpn/core/OpenVPNService.java | 2 |
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 |