Fix issue with URLs

This commit is contained in:
stom79 2018-09-25 17:50:58 +02:00
parent 0658931869
commit 3e0acb6b2a
1 changed files with 1 additions and 1 deletions

View File

@ -159,7 +159,7 @@ public class AboutActivity extends BaseActivity implements OnRetrieveRemoteAccou
about_support.setOnClickListener(new View.OnClickListener() {
@Override
public void onClick(View v) {
Intent browserIntent = new Intent(Intent.ACTION_VIEW, Uri.parse("https://liberapay.com/tom79/donate"));
Intent browserIntent = new Intent(Intent.ACTION_VIEW, Uri.parse("https://liberapay.com/tom79"));
startActivity(browserIntent);
}
});