aboutsummaryrefslogtreecommitdiff
path: root/MediaBrowser.ApiInteraction.Javascript/ApiClient.js
diff options
context:
space:
mode:
authorLukePulverenti <luke.pulverenti@gmail.com>2013-02-20 23:37:50 -0500
committerLukePulverenti <luke.pulverenti@gmail.com>2013-02-20 23:37:50 -0500
commita5f9dc1bfc6c8d37f915d2ea33e495013bd83ba5 (patch)
tree960cabedfbd07fe4eac3503e99f8bab745db58e2 /MediaBrowser.ApiInteraction.Javascript/ApiClient.js
parent509156cbc3497ff8daabefd3dba843f5b085701a (diff)
isolated sqlite dependancy
Diffstat (limited to 'MediaBrowser.ApiInteraction.Javascript/ApiClient.js')
-rw-r--r--MediaBrowser.ApiInteraction.Javascript/ApiClient.js24
1 files changed, 12 insertions, 12 deletions
diff --git a/MediaBrowser.ApiInteraction.Javascript/ApiClient.js b/MediaBrowser.ApiInteraction.Javascript/ApiClient.js
index de8f443d8..0b185a55e 100644
--- a/MediaBrowser.ApiInteraction.Javascript/ApiClient.js
+++ b/MediaBrowser.ApiInteraction.Javascript/ApiClient.js
@@ -815,8 +815,8 @@ var ApiClient = {
}
// Don't put these on the query string
- options.type = null;
- options.index = null;
+ delete options.type;
+ delete options.index;
return ApiClient.getUrl(url, options);
},
@@ -849,8 +849,8 @@ var ApiClient = {
}
// Don't put these on the query string
- options.type = null;
- options.index = null;
+ delete options.type;
+ delete options.index;
return ApiClient.getUrl(url, options);
},
@@ -883,8 +883,8 @@ var ApiClient = {
}
// Don't put these on the query string
- options.type = null;
- options.index = null;
+ delete options.type;
+ delete options.index;
return ApiClient.getUrl(url, options);
},
@@ -917,8 +917,8 @@ var ApiClient = {
}
// Don't put these on the query string
- options.type = null;
- options.index = null;
+ delete options.type;
+ delete options.index;
return ApiClient.getUrl(url, options);
},
@@ -951,8 +951,8 @@ var ApiClient = {
}
// Don't put these on the query string
- options.type = null;
- options.index = null;
+ delete options.type;
+ delete options.index;
return ApiClient.getUrl(url, options);
},
@@ -987,8 +987,8 @@ var ApiClient = {
}
// Don't put these on the query string
- options.type = null;
- options.index = null;
+ delete options.type;
+ delete options.index;
return ApiClient.getUrl(url, options);
},