mirror of
https://codeberg.org/tom79/Fedilab.git
synced 2025-02-25 18:39:45 +02:00
Update domains only if built-in browser is used
This commit is contained in:
parent
919a11ec61
commit
68f779c943
1 changed files with 4 additions and 1 deletions
|
@ -938,8 +938,11 @@ public abstract class BaseMainActivity extends BaseActivity implements NetworkSt
|
||||||
}
|
}
|
||||||
}).start();
|
}).start();
|
||||||
}
|
}
|
||||||
|
boolean embedded_browser = sharedpreferences.getBoolean(getString(R.string.SET_EMBEDDED_BROWSER), true);
|
||||||
|
if (embedded_browser) {
|
||||||
DomainsBlock.updateDomains(BaseMainActivity.this);
|
DomainsBlock.updateDomains(BaseMainActivity.this);
|
||||||
}
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
|
||||||
private void manageFilters(int position) {
|
private void manageFilters(int position) {
|
||||||
|
|
Loading…
Reference in a new issue