Fixes to handling of path properties in presets.

This commit is contained in:
Robin E. R. Davies
2025-09-04 15:20:56 -04:00
parent 0af57da5dd
commit ac194fbbb5
20 changed files with 231 additions and 96 deletions
+2 -1
View File
@@ -2623,7 +2623,8 @@ export class PiPedalModel //implements PiPedalModel
let pedalboard = this.pedalboard.get();
try {
let pedalboardItem = pedalboard.tryGetItem(instanceId);
if (pedalboardItem) {
if (pedalboardItem && pedalboardItem.pathProperties[propertyUri] !== undefined) {
pedalboardItem.pathProperties[propertyUri] = JSON.stringify(jsonObject);
}
} catch (ignored) {