Skip to content

Commit 2ce48f1

Browse files
committed
puiButtonCustPackage : bugfix of custom package preparation due to previous changes in ZIP file storage interface in loader
1 parent efa9d54 commit 2ce48f1

1 file changed

Lines changed: 2 additions & 2 deletions

File tree

zip/plugins/puiButtonCustPackage.js

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -111,9 +111,9 @@ class puiButtonCustPackage extends puiButton {
111111
}
112112
}
113113

114-
_preparePackage(items) {
114+
async _preparePackage(items) {
115115
const TI = this;
116-
const jszip = _Storage.getKey(STO_DATA)?.storageO;
116+
const jszip = await _Storage.getKey(STO_DATA)?.getCopyForChanges();
117117

118118
if (!jszip || typeof jszip === "string") {
119119
const contentPane = $(TI.cfgIDCONTENT);

0 commit comments

Comments
 (0)