Skip to content

Commit 274838e

Browse files
committed
android: fix typo in BASE_URL
The trailing slash is needed for the url replacement in `shouldInterceptRequest()` to work properly.
1 parent d906103 commit 274838e

File tree

1 file changed

+1
-1
lines changed
  • frontends/android/BitBoxApp/app/src/main/java/ch/shiftcrypto/bitboxapp

1 file changed

+1
-1
lines changed

frontends/android/BitBoxApp/app/src/main/java/ch/shiftcrypto/bitboxapp/MainActivity.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -54,7 +54,7 @@ public class MainActivity extends AppCompatActivity {
5454
// BitBoxApp, it is useless, as any app can do this.
5555
//
5656
// Unfortunately there seems to be no simple way to include this header only in requests to Moonpay.
57-
private static final String BASE_URL = "https://shiftcrypto.ch";
57+
private static final String BASE_URL = "https://shiftcrypto.ch/";
5858

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

0 commit comments

Comments
 (0)