Skip to content

Commit

Permalink
android: fix typo in BASE_URL
Browse files Browse the repository at this point in the history
The trailing slash is needed for the url replacement in
`shouldInterceptRequest()` to work properly.
  • Loading branch information
benma committed Apr 21, 2022
1 parent d906103 commit 274838e
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -54,7 +54,7 @@ public class MainActivity extends AppCompatActivity {
// BitBoxApp, it is useless, as any app can do this.
//
// Unfortunately there seems to be no simple way to include this header only in requests to Moonpay.
private static final String BASE_URL = "https://shiftcrypto.ch";
private static final String BASE_URL = "https://shiftcrypto.ch/";

// stores the request from onPermissionRequest until the user has granted or denied the permission.
private PermissionRequest webViewpermissionRequest;
Expand Down

0 comments on commit 274838e

Please sign in to comment.