diff options
author | Ansuel Smith <ansuelsmth@gmail.com> | 2018-09-19 14:00:43 +0200 |
---|---|---|
committer | Ansuel Smith <ansuelsmth@gmail.com> | 2018-09-19 14:00:43 +0200 |
commit | 8e13fcfbac98e0e6235cca2246ad4a06a9ec3157 (patch) | |
tree | 8ec1902bd0c207238740dfba5f6ace065d3d0204 /applications | |
parent | 9142a714691dc4f801a238bec3cec5101d374c29 (diff) |
luci-app-ddns: fix overview page
Small fix for wrong display of next update data
Signed-off-by: Ansuel Smith <ansuelsmth@gmail.com>
Diffstat (limited to 'applications')
-rw-r--r-- | applications/luci-app-ddns/Makefile | 2 | ||||
-rw-r--r-- | applications/luci-app-ddns/luasrc/view/ddns/system_status.htm | 2 |
2 files changed, 2 insertions, 2 deletions
diff --git a/applications/luci-app-ddns/Makefile b/applications/luci-app-ddns/Makefile index 331851d26..9262afcf8 100644 --- a/applications/luci-app-ddns/Makefile +++ b/applications/luci-app-ddns/Makefile @@ -16,7 +16,7 @@ PKG_VERSION:=2.4.9 # Release == build # increase on changes of translation files -PKG_RELEASE:=6 +PKG_RELEASE:=7 PKG_LICENSE:=Apache-2.0 PKG_MAINTAINER:=Ansuel Smith <ansuelsmth@gmail.com> diff --git a/applications/luci-app-ddns/luasrc/view/ddns/system_status.htm b/applications/luci-app-ddns/luasrc/view/ddns/system_status.htm index 31ed42b0a..615b6b433 100644 --- a/applications/luci-app-ddns/luasrc/view/ddns/system_status.htm +++ b/applications/luci-app-ddns/luasrc/view/ddns/system_status.htm @@ -25,7 +25,7 @@ rows.push([ '<strong>' + data[j].section + '</strong>', //configuration - data[j].datenextstat ? '<em>'+data[j].datenextstat+'</em>' : '<em><%:Unknown error%></em>', + data[j].datenextstat ? '<em>'+data[j].datenextstat+'</em>' : '<em>'+data[j].datenext+'</em>', data[j].lookup ? data[j].lookup : '<em><%:config error%></em>', data[j].reg_ip ? data[j].reg_ip : '<em><%:No data%></em>', data[j].iface // monitored interface |