diff options
author | Jo-Philipp Wich <jo@mein.io> | 2020-08-03 09:37:33 +0200 |
---|---|---|
committer | GitHub <noreply@github.com> | 2020-08-03 09:37:33 +0200 |
commit | b2e00f23a7862f47b8bd975207ba8242b55e6cf0 (patch) | |
tree | de194a40b8bd9d23db796c16653d9f8235e5b3bf /modules | |
parent | f7b426e9931187d18ce4e2f47ce255ca62d349f0 (diff) | |
parent | c4b617a7a63e269033b1197479173d834705c098 (diff) |
Merge pull request #4326 from n-thumann/bugfix/delayed_portstatus_loading
luci-base: Fixed delayed portstatus loading on R7800
Diffstat (limited to 'modules')
-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 7f0c0b226..1d46ad276 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), |