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

Fixed Movie link in history tab ()

Devin Buhl 8 years ago committed by GitHub
parent 736e0d2e70
commit 808033a01c

@ -6,7 +6,7 @@ module.exports = TemplatedCell.extend({
render : function() {
this.$el.html('<a href="movies/' + this.model.get("movie").get("titleSlug") +'">' + this.model.get("movie").get("title") + '</a>'); //Hack, but somehow handlebar helper does not work.
this.$el.html('<a href="/movies/' + this.model.get("movie").get("titleSlug") +'">' + this.model.get("movie").get("title") + '</a>'); //Hack, but somehow handlebar helper does not work.
return this;
}
});

Loading…
Cancel
Save