Merge pull request #1258 from MediaBrowser/master

reduce polling interval
This commit is contained in:
Luke
2015-11-12 13:08:51 -05:00
3 changed files with 3 additions and 3 deletions
+1 -1
View File
@@ -220,7 +220,7 @@
clearInterval(pollInterval);
pollInterval = null;
}
pollInterval = setInterval(onPollIntervalFired, 1500);
pollInterval = setInterval(onPollIntervalFired, 5000);
};
function unsubscribeFromPlayerUpdates() {
+1 -1
View File
@@ -211,7 +211,7 @@
if (pollInterval) {
clearInterval(pollInterval);
}
pollInterval = setInterval(onPollIntervalFired, 1500);
pollInterval = setInterval(onPollIntervalFired, 5000);
}
function stopInterval() {
+1 -1
View File
@@ -132,7 +132,7 @@ $.fn.taskButton = function (options) {
if (pollInterval) {
clearInterval(pollInterval);
}
pollInterval = setInterval(onPollIntervalFired, 1500);
pollInterval = setInterval(onPollIntervalFired, 5000);
}
function stopInterval() {