mirror of
https://github.com/siyuan-note/siyuan.git
synced 2025-12-16 22:50:13 +01:00
🐛 The document tree creation time and update time are reversed https://github.com/siyuan-note/siyuan/issues/12874
This commit is contained in:
parent
8dd0629b9c
commit
0ddf2c3fb5
1 changed files with 2 additions and 2 deletions
|
|
@ -92,8 +92,8 @@ func refreshDocInfo0(tree *parse.Tree, size uint64) {
|
||||||
"hSize": humanize.BytesCustomCeil(size, 2),
|
"hSize": humanize.BytesCustomCeil(size, 2),
|
||||||
"mtime": mTime.Unix(),
|
"mtime": mTime.Unix(),
|
||||||
"ctime": cTime.Unix(),
|
"ctime": cTime.Unix(),
|
||||||
"hMtime": cTime.Format("2006-01-02 15:04:05") + ", " + util.HumanizeTime(mTime, Conf.Lang),
|
"hMtime": mTime.Format("2006-01-02 15:04:05") + ", " + util.HumanizeTime(mTime, Conf.Lang),
|
||||||
"hCtime": mTime.Format("2006-01-02 15:04:05") + ", " + util.HumanizeTime(cTime, Conf.Lang),
|
"hCtime": cTime.Format("2006-01-02 15:04:05") + ", " + util.HumanizeTime(cTime, Conf.Lang),
|
||||||
"subFileCount": subFileCount,
|
"subFileCount": subFileCount,
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue