Fix BrowserApp class not being found by webkitproxy
This commit is contained in:
parent
51fc8d7f85
commit
cb27bf8afa
@ -547,7 +547,7 @@ public class BrowserActivity extends ThemableActivity implements BrowserControll
|
||||
try {
|
||||
String host = mPreferences.getProxyHost();
|
||||
int port = mPreferences.getProxyPort();
|
||||
WebkitProxy.setProxy(this.getPackageName() + ".BrowserApp", getApplicationContext(),
|
||||
WebkitProxy.setProxy(BrowserApp.class.getName(), getApplicationContext(),
|
||||
host, port);
|
||||
} catch (Exception e) {
|
||||
Log.d(Constants.TAG, "error enabling web proxying", e);
|
||||
@ -710,7 +710,7 @@ public class BrowserActivity extends ThemableActivity implements BrowserControll
|
||||
initializeTor();
|
||||
} else {
|
||||
try {
|
||||
WebkitProxy.resetProxy(mActivity.getPackageName() + ".BrowserApp",
|
||||
WebkitProxy.resetProxy(BrowserApp.class.getName(),
|
||||
getApplicationContext());
|
||||
} catch (Exception e) {
|
||||
e.printStackTrace();
|
||||
|
Loading…
x
Reference in New Issue
Block a user