fix: switch order of modification time sorter

This commit is contained in:
kiyan 2022-03-07 22:32:19 +01:00
parent 19075f41e8
commit 08c57660a7

View File

@ -109,7 +109,7 @@ function M.node_comparator_modification_time(a, b)
last_modified_b = b.fs_stat.mtime.sec
end
return last_modified_a <= last_modified_b
return last_modified_b <= last_modified_a
end
function M.setup(opts)