When using utui.automator.copyTag(id, true) and then processing the clipboard in a destination profile, I always get the error Uncaught TypeError: Cannot read property 'getLabels' of undefined Is this a known bug when working with the automator? It seems it can't handle labels. Simply deleting the labels via delete utui.atuomator.clipboard.labels allows us to skip the labels, but then results in reference errors to those labels for other building blocks. You can get it to run by overwritting the label references via utui.automator.getClipboard().forEach(_ => _.obj.labels = "") before processing, but it's still a bug. Side note: Using recursive copying with .copyTag(id,true) is not truly recursive as all references from connected extensions will not be taken into account.
... View more