@arsedizioni/ars-utils 19.5.69 → 19.5.71
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/fesm2022/arsedizioni-ars-utils-core.mjs +1 -1
- package/fesm2022/arsedizioni-ars-utils-core.mjs.map +1 -1
- package/fesm2022/arsedizioni-ars-utils-ui.application.mjs +1 -1
- package/fesm2022/arsedizioni-ars-utils-ui.application.mjs.map +1 -1
- package/package.json +9 -9
- package/tinymce/langs/it.js +1 -1
|
@@ -639,7 +639,7 @@ class SystemUtils {
|
|
|
639
639
|
if (url.includes("?")) {
|
|
640
640
|
const httpParams = new HttpParams({ fromString: url.split("?")[1] });
|
|
641
641
|
const v = decodeURIComponent(httpParams.get(name));
|
|
642
|
-
if (v !== "null")
|
|
642
|
+
if (v && v !== "null")
|
|
643
643
|
return v;
|
|
644
644
|
else
|
|
645
645
|
return undefined;
|