nodestatus-server 1.2.5-beta → 1.2.5-beta.1
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/build/app.js +1 -1
- package/build/dist/hotaru-admin/assets/{LayoutHandler.e276d20c.js → LayoutHandler.c6475d48.js} +1 -1
- package/build/dist/hotaru-admin/assets/{Login.1e56d0ea.js → Login.cf2568e5.js} +1 -1
- package/build/dist/hotaru-admin/assets/{index.71c368a8.js → index.b02603d5.js} +1 -1
- package/build/dist/hotaru-admin/index.html +1 -1
- package/build/dist/hotaru-theme/assets/{index.54c6e9ed.js → index.a0260b78.js} +1 -1
- package/build/dist/hotaru-theme/index.html +1 -1
- package/package.json +1 -1
package/build/app.js
CHANGED
|
@@ -149747,7 +149747,7 @@ function createPush(options) {
|
|
|
149747
149747
|
const parseEntities = (msg) => {
|
|
149748
149748
|
let str;
|
|
149749
149749
|
if (typeof msg !== "string")
|
|
149750
|
-
str = msg
|
|
149750
|
+
str = msg?.toString() || "";
|
|
149751
149751
|
else
|
|
149752
149752
|
str = msg;
|
|
149753
149753
|
let newStr = "";
|