summaryrefslogtreecommitdiffhomepage
path: root/applications/luci-app-travelmate/htdocs/luci-static/resources
diff options
context:
space:
mode:
authorDirk Brenken <dev@brenken.org>2020-09-27 14:38:10 +0200
committerGitHub <noreply@github.com>2020-09-27 14:38:10 +0200
commit9d180607d302c26a0ce86fc6932f4b08efbfb61f (patch)
treedc226a5e845270063bd3601edab7b753553d6e05 /applications/luci-app-travelmate/htdocs/luci-static/resources
parent1da9df837685b3a2afc80125d056e37198933533 (diff)
parent2815fed05e0232016d7b00bd206f1bf915063619 (diff)
Merge pull request #4474 from dibdot/trm-fix
luci-app-travelmate: sync with travelmate 2.0.1
Diffstat (limited to 'applications/luci-app-travelmate/htdocs/luci-static/resources')
-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();
}