Skip to content

Commit

Permalink
appinfo: fix 'from_catalog' dict access for custom apps
Browse files Browse the repository at this point in the history
  • Loading branch information
Axolotle committed Sep 29, 2023
1 parent 357e412 commit 3b33196
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion app/src/views/app/AppInfo.vue
Original file line number Diff line number Diff line change
Expand Up @@ -422,7 +422,7 @@ export default {
links: [
['license', `https://spdx.org/licenses/${app.manifest.upstream.license}`],
...['website', 'admindoc', 'userdoc', 'code'].map((key) => ([key, app.manifest.upstream[key]])),
['package', app.from_catalog.git.url],
['package', app.from_catalog.git?.url],
['forum', `https://forum.yunohost.org/tag/${app.manifest.id}`]
].filter(([key, val]) => !!val),
doc: {
Expand Down

0 comments on commit 3b33196

Please sign in to comment.