From 1aa51ad5c44c92e12c9934e28f30db1fa49eece0 Mon Sep 17 00:00:00 2001 From: Erik Lundin Date: Mon, 8 Oct 2012 02:47:10 +0200 Subject: [PATCH] Fixed bug #1038694 'Change in service order not reflected in stage view' Fixes: https://launchpad.net/bugs/1038694 --- openlp/plugins/remotes/html/stage.js | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/openlp/plugins/remotes/html/stage.js b/openlp/plugins/remotes/html/stage.js index 38bd0fe01..6c5f35e1e 100644 --- a/openlp/plugins/remotes/html/stage.js +++ b/openlp/plugins/remotes/html/stage.js @@ -139,8 +139,10 @@ window.OpenLP = { "/api/poll", function (data, status) { OpenLP.updateClock(data); - if (OpenLP.currentItem != data.results.item) { + if (OpenLP.currentItem != data.results.item || + OpenLP.currentService != data.results.service) { OpenLP.currentItem = data.results.item; + OpenLP.currentService = data.results.service; OpenLP.loadSlides(); } else if (OpenLP.currentSlide != data.results.slide) {