luci-app-minidlna: fix service check
The service process was renamed from `minidlna` to `minidlnad`. Fixes: #3700 Signed-off-by: Jo-Philipp Wich <jo@mein.io>
This commit is contained in:
parent
4b476d6239
commit
0d68d0ad7b
1 changed files with 1 additions and 1 deletions
|
@ -22,7 +22,7 @@ function minidlna_status()
|
||||||
local port = tonumber(uci:get_first("minidlna", "minidlna", "port"))
|
local port = tonumber(uci:get_first("minidlna", "minidlna", "port"))
|
||||||
|
|
||||||
local status = {
|
local status = {
|
||||||
running = (sys.call("pidof minidlna >/dev/null") == 0),
|
running = (sys.call("pidof minidlnad >/dev/null") == 0),
|
||||||
audio = 0,
|
audio = 0,
|
||||||
video = 0,
|
video = 0,
|
||||||
image = 0
|
image = 0
|
||||||
|
|
Loading…
Reference in a new issue