Skip to content

Commit

Permalink
Merge pull request #16 from bitfocus/fix/upscript
Browse files Browse the repository at this point in the history
Bad reference in upgrades.js
  • Loading branch information
istnv authored Aug 7, 2023
2 parents 923174f + ef91e0a commit f353f93
Show file tree
Hide file tree
Showing 3 changed files with 4 additions and 4 deletions.
2 changes: 1 addition & 1 deletion companion/manifest.json
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@
"type": "node18",
"api": "nodejs-ipc",
"apiVersion": "0.0.0",
"entrypoint": "..\\src\\index.js"
"entrypoint": "../src/index.js"
},
"manufacturer": "Blackmagic Design",
"products": ["SmartView", "SmartScope"],
Expand Down
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "bmd-smartview",
"version": "2.0.4",
"version": "2.0.5",
"main": "src/index.js",
"type": "module",
"scripts": {
Expand Down
4 changes: 2 additions & 2 deletions src/upgrades.js
Original file line number Diff line number Diff line change
Expand Up @@ -13,8 +13,8 @@ export function upgrade_v1_1_0(context, props) {
}

if (props.actions) {
for (let k in actions) {
upgradePass(actions[k])
for (let k in props.actions) {
upgradePass(props.actions[k])
}
}

Expand Down

0 comments on commit f353f93

Please sign in to comment.