Your ROOT_URL in app.ini is https://git.cloudchain.link/ but you are visiting https://dash.bss.nz/open-source-mirrors/Readarr/commit/0a8dcaaf168d8bad765b445a7707fae52c9433ef You should set ROOT_URL correctly, otherwise the web may not work correctly.

Fixed error when trying to display time

pull/6/head
Mark McDowall 11 years ago
parent cd66f8f198
commit 0a8dcaaf16

@ -12,7 +12,7 @@ define(
render: function () {
var date = moment(this._getValue());
this.$el.html('<span title="{1}">{0}</span>'.format(date.format(UiSettings.get('timeFormat')), date.format(UiSettings.longDateFormat())));
this.$el.html('<span title="{1}">{0}</span>'.format(date.format(UiSettings.get('timeFormat').replace('(', '').replace(')', '')), date.format(UiSettings.longDateTime())));
return this;
}

Loading…
Cancel
Save