mirror of https://github.com/lidarr/Lidarr
better template load error message.
This commit is contained in:
parent
2112a8f9fa
commit
577d8adec4
|
@ -2,7 +2,7 @@
|
|||
|
||||
loadTemplate: function (templateId) {
|
||||
|
||||
var template = "<div class='alert alert-error'>TEMPLATE [" + templateId + "] NOT FOUND</div>";
|
||||
var template;
|
||||
|
||||
jQuery.ajax({
|
||||
url: 'Backbone.NzbDrone//' + templateId + '.html',
|
||||
|
@ -13,6 +13,7 @@
|
|||
|
||||
}).fail(function (data) {
|
||||
console.log("couldn't load template " + this.templateId + " Error: " + data.statusText);
|
||||
template = "<div class='alert alert-error'>Couldn't load template '" + templateId + "'. Status: " + data.statusText + "</div>";
|
||||
});
|
||||
|
||||
return template;
|
||||
|
|
Loading…
Reference in New Issue