Fix time format if no date is present

This commit is contained in:
Lorenz Hübschle-Schneider 2016-09-19 10:11:14 +02:00
parent 1324beeb5e
commit 7974204af3
1 changed files with 7 additions and 7 deletions

View File

@ -159,13 +159,13 @@ weechat.factory('connection',
} }
// if there is a date, assemble it in the right order // if there is a date, assemble it in the right order
if (date_components.length > 0) { date_components.sort();
date_components.sort(); var format_array = [];
var format_array = []; for (var i = 0; i < date_components.length; i++) {
for (var i = 0; i < date_components.length; i++) { if (date_components[i][0] == -1) continue;
if (date_components[i][0] == -1) continue; format_array.push(date_components[i][1]);
format_array.push(date_components[i][1]); }
} if (format_array.length > 0) {
// TODO: parse delimiter as well? For now, use '/' as it is // TODO: parse delimiter as well? For now, use '/' as it is
// more common internationally than '-' // more common internationally than '-'
var date_format = format_array.join(_timeDelimiter("/")); var date_format = format_array.join(_timeDelimiter("/"));