Skip to content

Commit

Permalink
fix: apps fix (#1334)
Browse files Browse the repository at this point in the history
* v

* Update satolist.js

* v
  • Loading branch information
maxgithubprofile authored Dec 16, 2024
1 parent 81004b3 commit 2385e24
Show file tree
Hide file tree
Showing 3 changed files with 8 additions and 4 deletions.
2 changes: 1 addition & 1 deletion components/application/index.js
Original file line number Diff line number Diff line change
Expand Up @@ -36,7 +36,7 @@ var application = (function(){
self.closeContainer()
}
else{
self.app.platform.ui.goback('home')
self.app.platform.ui.goback('index')
/*self.app.nav.api.load({
open : true,
href : 'index',
Expand Down
6 changes: 5 additions & 1 deletion js/lib/apps/index.js
Original file line number Diff line number Diff line change
Expand Up @@ -1850,7 +1850,11 @@ var BastyonApps = function (app) {

promises.push(Promise.all(_.map(installedLocal, (info) => {

self.get.applicationall(info.id, info.cached).then(({
if(_.find(allApps, (app) => {
return app.id == info.id
})) return Promise.resolve()

return self.get.applicationall(info.id, info.cached).then(({
application
}) => {

Expand Down
4 changes: 2 additions & 2 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -4,9 +4,9 @@

"version": "0.9.105",

"versionsuffix": "4",
"versionsuffix": "5",
"cordovaversion": "1.8.105",
"cordovaversioncode": "1801054",
"cordovaversioncode": "1801055",

"description": "Bastyon desktop application",
"author": "Pocketnet Community <[email protected]>",
Expand Down

0 comments on commit 2385e24

Please sign in to comment.