summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorArne Schwabe <arne@rfc2549.org>2014-10-03 21:40:54 +0200
committerArne Schwabe <arne@rfc2549.org>2014-10-03 21:40:54 +0200
commitcfc02dd036561460dbb88ed371998704c4d5842f (patch)
tree599b6af629e2a9aa47751988c160e5bf28ed95a2
parent53ed7276945dcc7ca474b2f1fb400ce3d14b7561 (diff)
Fix bug when loading excluded IPv4 routes
--HG-- extra : rebase_source : 939df3c5b7e45948c5ab28f7d8f6af465ad739b5
-rw-r--r--main/src/main/java/de/blinkt/openvpn/fragments/Settings_Routing.java2
1 files changed, 1 insertions, 1 deletions
diff --git a/main/src/main/java/de/blinkt/openvpn/fragments/Settings_Routing.java b/main/src/main/java/de/blinkt/openvpn/fragments/Settings_Routing.java
index e4d1cadd..36b14ee1 100644
--- a/main/src/main/java/de/blinkt/openvpn/fragments/Settings_Routing.java
+++ b/main/src/main/java/de/blinkt/openvpn/fragments/Settings_Routing.java
@@ -54,7 +54,7 @@ public class Settings_Routing extends OpenVpnPreferencesFragment implements OnPr
mCustomRoutesv6.setText(mProfile.mCustomRoutesv6);
mExcludedRoutes.setText(mProfile.mExcludedRoutes);
- mExcludedRoutes.setText(mProfile.mExcludedRoutesv6);
+ mExcludedRoutesv6.setText(mProfile.mExcludedRoutesv6);
mRouteNoPull.setChecked(mProfile.mRoutenopull);
mLocalVPNAccess.setChecked(mProfile.mAllowLocalLAN);