diff options
author | Nicolas Thumann <me@n-thumann.de> | 2020-08-02 17:59:53 +0200 |
---|---|---|
committer | nthumann <me@n-thumann.de> | 2020-08-02 20:08:20 +0200 |
commit | c4b617a7a63e269033b1197479173d834705c098 (patch) | |
tree | da18ffd8ecb84df5929eb15e780143c8ac9691c2 /modules/luci-base/root/usr/libexec | |
parent | fbe7af365583edc9d26e92d5540abc493bb40741 (diff) |
luci-base: Fixed delayed portstatus loading on R7800
Signed-off-by: Nicolas Thumann <me@n-thumann.de>
Diffstat (limited to 'modules/luci-base/root/usr/libexec')
-rwxr-xr-x | modules/luci-base/root/usr/libexec/rpcd/luci | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/modules/luci-base/root/usr/libexec/rpcd/luci b/modules/luci-base/root/usr/libexec/rpcd/luci index 7f0c0b226c..1d46ad276c 100755 --- a/modules/luci-base/root/usr/libexec/rpcd/luci +++ b/modules/luci-base/root/usr/libexec/rpcd/luci @@ -368,7 +368,7 @@ local methods = { break end - local pnum = line:match("^Port (%d+):") + local pnum = line:match("^Port (%d+):$") if pnum then port = { port = tonumber(pnum), |