diff --git a/silkmvc/core/mimes.lua b/silkmvc/core/mimes.lua index 798aaf8..09f9d8c 100644 --- a/silkmvc/core/mimes.lua +++ b/silkmvc/core/mimes.lua @@ -42,6 +42,9 @@ end function std.extra_mime(name) local ext = utils.ext(name) local mpath = __ROOT__ .. "/" .. "mimes.json" + if WWW_ROOT and not utils.file_exists(mpath) then + local mpath = WWW_ROOT .. "/" .. "mimes.json" + end local xmimes = {} if utils.file_exists(mpath) then xmimes = JSON.decodeFile(mpath)