Avoid 1970 date if list was never updated.

This commit is contained in:
DL6ER
2021-03-17 16:55:27 +01:00
committed by GitHub
parent bc108ea834
commit 78672fdbec
+1 -1
View File
@@ -86,7 +86,7 @@ function format(data) {
" (" +
utils.datetime(data.date_modified, false) +
')</td></tr><tr class="dataTables-child"><td>The list contents were last updated&nbsp;&nbsp;</td><td>' +
(data.date_updated !== null
(data.date_updated > 0
? utils.datetimeRelative(data.date_updated) +
"&nbsp;(" +
utils.datetime(data.date_updated) +