single-file-core 1.5.47 → 1.5.48

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.
Files changed (2) hide show
  1. package/core/infobar.js +1 -1
  2. package/package.json +1 -1
package/core/infobar.js CHANGED
@@ -247,7 +247,7 @@ function appendInfobar(doc, options, useShadowRoot) {
247
247
  const scriptElement = doc.createElement("script");
248
248
  let scriptContent = refreshInfobarInfo.toString() + ";";
249
249
  scriptContent += extractInfobarData.toString() + ";";
250
- scriptContent += "(" + initInfobar.toString() + ")(document, " + JSON.stringify(options) + ");";
250
+ scriptContent += "(" + initInfobar.toString() + ")(document, " + JSON.stringify(SINGLE_FILE_SIGNATURE) + ");";
251
251
  scriptElement.textContent = scriptContent;
252
252
  shadowRootContent.appendChild(scriptElement);
253
253
  infobarContainer.innerHTML = shadowRootContent.outerHTML;
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "single-file-core",
3
- "version": "1.5.47",
3
+ "version": "1.5.48",
4
4
  "description": "SingleFile Core",
5
5
  "author": "Gildas Lormeau",
6
6
  "license": "AGPL-3.0-or-later",