summaryrefslogtreecommitdiffhomepage
path: root/applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate
diff options
context:
space:
mode:
authorDirk Brenken <dev@brenken.org>2020-09-27 07:03:15 +0200
committerDirk Brenken <dev@brenken.org>2020-09-27 07:03:15 +0200
commit2815fed05e0232016d7b00bd206f1bf915063619 (patch)
treedc226a5e845270063bd3601edab7b753553d6e05 /applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate
parent1da9df837685b3a2afc80125d056e37198933533 (diff)
luci-app-travelmate: sync with travelmate 2.0.1
* just change the location of one state file Signed-off-by: Dirk Brenken <dev@brenken.org>
Diffstat (limited to 'applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate')
-rw-r--r--applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js6
1 files changed, 3 insertions, 3 deletions
diff --git a/applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js b/applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js
index 42a1e9aa88..8b3b7d3993 100644
--- a/applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js
+++ b/applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js
@@ -104,10 +104,10 @@ function handleSectionsVal(action, section_id, option, value) {
*/
function handleStatus() {
poll.add(function() {
- L.resolveDefault(fs.stat('/var/run/travelmate.refresh'), null).then(function(res) {
+ L.resolveDefault(fs.stat('/var/state/travelmate.refresh'), null).then(function(res) {
if (res) {
- L.resolveDefault(fs.read_direct('/var/run/travelmate.refresh'), null).then(function(res) {
- fs.remove('/var/run/travelmate.refresh');
+ L.resolveDefault(fs.read_direct('/var/state/travelmate.refresh'), null).then(function(res) {
+ fs.remove('/var/state/travelmate.refresh');
if (res && res === 'ui_reload') {
location.reload();
}