@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.
@@ -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;