Skip to content

Commit

Permalink
FIX: change interval of JS operations
Browse files Browse the repository at this point in the history
The interval was still set for debugging. We don't want it running that
often in production.
  • Loading branch information
JasonRaveling committed Feb 20, 2018
1 parent 33c86ad commit 9b9fa0a
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion includes/clientside.js
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@
* being done serverside and saved to a file called channel.json
*/

var keepListening = setInterval(checkYouTube, 10000);
var keepListening = setInterval(checkYouTube, 18000);

var siteURL = document.domain;
var pluginURL = siteURL + "/wp-content/plugins/wunrav-youtube-live-embed";
Expand Down

0 comments on commit 9b9fa0a

Please sign in to comment.