diff options
-rw-r--r-- | libs/web/luasrc/dispatcher.lua | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/libs/web/luasrc/dispatcher.lua b/libs/web/luasrc/dispatcher.lua index 28c460858..4cbbe58ce 100644 --- a/libs/web/luasrc/dispatcher.lua +++ b/libs/web/luasrc/dispatcher.lua @@ -437,7 +437,7 @@ function createindex_plain(path, suffixes) if cachedate then local realdate = 0 for _, obj in ipairs(controllers) do - local omtime = fs.stat(path .. "/" .. obj, "mtime") + local omtime = fs.stat(obj, "mtime") realdate = (omtime and omtime > realdate) and omtime or realdate end |