Your ROOT_URL in app.ini is https://git.cloudchain.link/ but you are visiting https://dash.bss.nz/open-source-mirrors/Readarr/src/commit/fb26cbb4a4da9423c9f0475541aa6bda5f0050a3/UI/Series/SeriesModel.js
You should set ROOT_URL correctly, otherwise the web may not work correctly.
|
'use strict';
|
|
define(
|
|
[
|
|
'backbone',
|
|
|
|
'underscore'
|
|
], function (Backbone, _) {
|
|
return Backbone.Model.extend({
|
|
|
|
urlRoot: ApiRoot + '/series',
|
|
|
|
defaults: {
|
|
episodeFileCount: 0,
|
|
episodeCount : 0,
|
|
isExisting : false,
|
|
status : 0
|
|
}
|
|
});
|
|
});
|