Use semicolon instead of comma

This commit is contained in:
Johannes Zellner
2022-01-21 19:42:07 +01:00
parent f017e297f7
commit a3efa8db54
+1 -1
View File
@@ -639,7 +639,7 @@ async function update(app, args, progressCallback) {
delete app.portBindings[portName];
}
await updateApp(app, _.pick(updateConfig, 'manifest', 'appStoreId', 'memoryLimit')), // switch over to the new config
await updateApp(app, _.pick(updateConfig, 'manifest', 'appStoreId', 'memoryLimit')); // switch over to the new config
await progressCallback({ percent: 45, message: 'Downloading icon' });
await downloadIcon(app);