Skip to content
This repository has been archived by the owner on Nov 8, 2022. It is now read-only.

Commit

Permalink
fix(update): canceling auto-update no longer breaks blaseball updates
Browse files Browse the repository at this point in the history
  • Loading branch information
Benjamin Reed committed Sep 3, 2020
1 parent a1f6015 commit 2ce2783
Show file tree
Hide file tree
Showing 2 changed files with 10 additions and 1 deletion.
5 changes: 5 additions & 0 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -7,6 +7,11 @@ Blases Loaded is a mobile app for live-viewing Blaseball games.
* [iPhone/iPad](https://apps.apple.com/us/app/id1529695719)
* [Android](https://play.google.com/store/apps/details?id=com.raccoonfink.blobile)

## Beta Testing

* [iPhone/iPad]()
* [Android](https://play.google.com/apps/testing/com.raccoonfink.blobile)

## Building

It's an [Ionic](https://ionicframework.com/) [Angular](https://angular.io/) app, so standard Ionic and Angular tools are used for building.
Expand Down
6 changes: 5 additions & 1 deletion src/app/app.component.ts
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,8 @@ export class AppComponent {
initializeApp() {
this.platform.ready().then(async () => {
SplashScreen.hide();
return this.checkUpdate();
this.checkUpdate();
return true;
});
}

Expand All @@ -48,6 +49,9 @@ export class AppComponent {
text: 'Not Now',
role: 'cancel',
cssClass: 'secondary',
handler: () => {
return true;
}
},
{
text: 'Apply',
Expand Down

0 comments on commit 2ce2783

Please sign in to comment.