Rietveld Code Review Tool
Help | Bug tracker | Discussion group | Source code

Unified Diff: src/org/adblockplus/android/Preferences.java

Issue 9643003: Improve manual proxy configuration (Closed)
Patch Set: Created March 6, 2013, 2:13 p.m.
Use n/p to move between diff chunks; N/P to move between comments.
Jump to:
View side-by-side diff with in-line comments
Download patch
Index: src/org/adblockplus/android/Preferences.java
===================================================================
--- a/src/org/adblockplus/android/Preferences.java
+++ b/src/org/adblockplus/android/Preferences.java
@@ -443,7 +443,7 @@
if (extra.getBoolean("configured"))
hideConfigurationMsg();
else
- showConfigurationMsg(getString(R.string.msg_configuration, extra.getInt("port")));
+ showConfigurationMsg(getString(R.string.msg_configuration));
Andrey Novikov 2013/03/07 10:26:34 This is for 2.x devices also, see my comments in s
}
}
else
@@ -536,7 +536,7 @@
Log.d(TAG, "Proxy service connected");
if (proxyService.isManual() && proxyService.noTraffic())
- showConfigurationMsg(getString(R.string.msg_configuration, proxyService.port));
+ showConfigurationMsg(getString(R.string.msg_configuration));
Andrey Novikov 2013/03/07 10:26:34 This is for 2.x devices also, see my comments in s
}
public void onServiceDisconnected(ComponentName className)

Powered by Google App Engine
This is Rietveld