omnigateway 0.4.3 → 0.4.4
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/gateway.js +1 -1
- package/package.json +1 -1
package/gateway.js
CHANGED
|
@@ -43667,7 +43667,7 @@ function pluginCatalog(plugins) {
|
|
|
43667
43667
|
version: plugin.manifest.version,
|
|
43668
43668
|
nav: plugin.manifest.nav === undefined ? null : plugin.manifest.nav,
|
|
43669
43669
|
ui: plugin.ui === undefined ? null : {
|
|
43670
|
-
entry: plugin.ui.compatible ? `${PLUGIN_ASSET_PREFIX}/${plugin.id}/${plugin.ui.entry}` : null,
|
|
43670
|
+
entry: plugin.ui.compatible ? `${PLUGIN_ASSET_PREFIX}/${plugin.id}/${plugin.ui.entry}?v=${encodeURIComponent(plugin.manifest.version)}` : null,
|
|
43671
43671
|
compatible: plugin.ui.compatible,
|
|
43672
43672
|
...plugin.ui.reason === undefined ? {} : { reason: plugin.ui.reason }
|
|
43673
43673
|
}
|
package/package.json
CHANGED