1
0
mirror of https://github.com/fuse-friends/fuse-native synced 2024-10-27 18:34:01 +00:00

amc is the stat order

This commit is contained in:
Mathias Buus 2020-01-07 10:54:30 +01:00
parent 148f2af59d
commit 393250d107

View File

@ -709,8 +709,8 @@ function getStatArray (stat) {
ints[8] = (stat && stat.blksize) || 0 ints[8] = (stat && stat.blksize) || 0
ints[9] = (stat && stat.blocks) || 0 ints[9] = (stat && stat.blocks) || 0
setDoubleInt(ints, 10, toDateMS(stat && stat.atime)) setDoubleInt(ints, 10, toDateMS(stat && stat.atime))
setDoubleInt(ints, 12, toDateMS(stat && stat.ctime)) setDoubleInt(ints, 12, toDateMS(stat && stat.mtime))
setDoubleInt(ints, 14, toDateMS(stat && stat.mtime)) setDoubleInt(ints, 14, toDateMS(stat && stat.ctime))
return ints return ints
} }