From 2df5ead8f446f7f2444fc86cbf5d26c226387ac3 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?P=C3=A9ter=20Szil=C3=A1gyi?= Date: Tue, 15 Nov 2016 16:29:56 +0200 Subject: [PATCH] Fix downloads hardcoded date parsing. --- downloads/index.html | 2 ++ 1 file changed, 2 insertions(+) diff --git a/downloads/index.html b/downloads/index.html index 40604a5c1c..bb4d90b26e 100644 --- a/downloads/index.html +++ b/downloads/index.html @@ -319,6 +319,8 @@ } if (date.length != 14) { date = new Date($($(blobs[i]).find('Last-Modified')[0]).text()); + } else { + date = moment(date, "YYYYMMDDhhmmss").toDate(); } var size = $($(blobs[i]).find('Content-Length')[0]).text();