diff --git a/luasrc/model/cbi/jellyfin.lua b/luasrc/model/cbi/jellyfin.lua index f31eedd..ba071f9 100644 --- a/luasrc/model/cbi/jellyfin.lua +++ b/luasrc/model/cbi/jellyfin.lua @@ -31,7 +31,7 @@ o:depends("hostnet", 0) local blocks = jellyfin_model.blocks() local home = jellyfin_model.home() -o = s:option(Value, "config_path", translate("Config path").."*") +o = s:option(Value, "config_path", translate("Download path").."*") o.rmempty = false o.datatype = "string" @@ -41,7 +41,7 @@ for _, val in pairs(paths) do end o.default = default_path -o = s:option(Value, "media_path", translate("Media path"), translate("Not required, all disk is mounted in") .. " /mnt") +o = s:option(Value, "media_path", translate("Media path"), translate("Not required, all disk is mounted in") .. " /opt") o.datatype = "string" o = s:option(Value, "cache_path", translate("Transcode cache path"), translate("Default use 'transcodes' in 'config path' if not set, please make sure there has enough space"))