Fix same exception ebraminio did in moonradar.html

This commit is contained in:
Don Cross
2022-05-04 20:40:45 -04:00
parent 99fec87a47
commit 945bb3eebc

View File

@@ -143,7 +143,7 @@
var Options;
function ParseDate(s) {
return new Date(s.replace(' ', 'T')); // Safari doesn't like the space character
return new Date((s || '').replace(' ', 'T')); // Safari doesn't like the space character
}
function IsValidNumber(s) {