Fix#5084: Tapping on GitHub icon opens app when installed (#5171)

This commit is contained in:
Eduardo Isai Martínez Méndez 2023-03-09 20:45:32 -06:00 committed by GitHub
parent b048e099c0
commit ce1a0b88c3
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
2 changed files with 9 additions and 1 deletions

View file

@ -101,7 +101,14 @@ public class AboutActivity extends BaseActivity {
}
public void launchGithub(View view) {
Utils.handleWebUrl(this, Uri.parse(Urls.GITHUB_REPO_URL));
Intent intent;
try {
intent = new Intent(Intent.ACTION_VIEW, Uri.parse(Urls.GITHUB_REPO_URL));
intent.setPackage(Urls.GITHUB_PACKAGE_NAME);
startActivity(intent);
} catch (Exception e) {
Utils.handleWebUrl(this, Uri.parse(Urls.GITHUB_REPO_URL));
}
}
public void launchWebsite(View view) {