@esfaenza/extensions 13.1.6 → 13.1.7
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.
|
@@ -694,7 +694,7 @@ class DateService {
|
|
|
694
694
|
tryThis = toCall(date, this.cfg.smallDate);
|
|
695
695
|
else if (length == this.cfg.fulldateNoSS.length)
|
|
696
696
|
tryThis = toCall(date, this.cfg.fulldateNoSS);
|
|
697
|
-
if (tryThis.isValid())
|
|
697
|
+
if (tryThis && tryThis.isValid())
|
|
698
698
|
return tryThis;
|
|
699
699
|
// Se niente funziona, null.
|
|
700
700
|
// Ricondurre l'Input ad una data non è possibile.
|