1
0
mirror of https://github.com/Radarr/Radarr.git synced 2026-04-26 22:46:53 -04:00

Episode activity goes through History now

Do not report exceptions on linux (culture is null and fails)
This commit is contained in:
Mark McDowall
2013-10-06 11:06:39 -07:00
parent 7d2c6339bc
commit 27511769ae
12 changed files with 48 additions and 109 deletions
+11 -1
View File
@@ -26,8 +26,18 @@ define(
}
},
initialize: function (options) {
delete this.queryParams.episodeId;
if (options) {
if (options.episodeId) {
this.queryParams.episodeId = options.episodeId;
}
}
},
parseState: function (resp) {
return {totalRecords: resp.totalRecords};
return { totalRecords: resp.totalRecords };
},
parseRecords: function (resp) {