Skip to content

Commit

Permalink
fix: use demo-app in the doc
Browse files Browse the repository at this point in the history
  • Loading branch information
riderx committed Mar 26, 2022
1 parent 0759690 commit 99968c5
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -76,7 +76,7 @@ Add in your main code
if (state.isActive) {
// Do the download during user active app time to prevent failed download
version = await CapacitorUpdater.download({
url: 'https://github.com/Forgr-ee/Mimesis/releases/download/0.0.1/dist.zip',
url: 'https://github.com/Cap-go/demo-app/releases/download/0.0.4/dist.zip',
})
}
if (!state.isActive && version !== "") {
Expand All @@ -93,7 +93,7 @@ Add in your main code
// or do it when click on button
const updateNow = async () => {
const version = await CapacitorUpdater.download({
url: 'https://github.com/Forgr-ee/Mimesis/releases/download/0.0.1/dist.zip',
url: 'https://github.com/Cap-go/demo-app/releases/download/0.0.4/dist.zip',
})
// show the splashscreen to let the update happen
SplashScreen.show()
Expand Down

0 comments on commit 99968c5

Please sign in to comment.