Rename open to openBrowser

This commit is contained in:
Pfaffenrodt
2022-11-01 10:52:11 +01:00
parent 6f777068ab
commit 8a67d1d02b
2 changed files with 2 additions and 2 deletions

View File

@@ -64,7 +64,7 @@ public class AboutActivity extends CatimaAppCompatActivity {
View.OnClickListener openExternalBrowser = view -> {
Object tag = view.getTag();
if (tag instanceof String && ((String) tag).startsWith("https://")) {
(new OpenWebLinkHandler()).open(this, (String) tag);
(new OpenWebLinkHandler()).openBrowser(this, (String) tag);
}
};
binding.versionHistory.setOnClickListener(openExternalBrowser);