mirror of
https://github.com/siyuan-note/siyuan.git
synced 2025-12-17 07:00:12 +01:00
🐛 After changing the History Retention Days, the file history cannot be displayed https://github.com/siyuan-note/siyuan/issues/11935
This commit is contained in:
parent
f566ef4abc
commit
e4541c9d5f
3 changed files with 6 additions and 6 deletions
|
|
@ -41,7 +41,7 @@ type historyDBQueueOperation struct {
|
|||
action string // index/deleteOutdated
|
||||
|
||||
histories []*History // index
|
||||
before string // deleteOutdated
|
||||
before int64 // deleteOutdated
|
||||
}
|
||||
|
||||
func FlushHistoryTxJob() {
|
||||
|
|
@ -121,7 +121,7 @@ func execHistoryOp(op *historyDBQueueOperation, tx *sql.Tx, context map[string]i
|
|||
return
|
||||
}
|
||||
|
||||
func DeleteOutdatedHistories(before string) {
|
||||
func DeleteOutdatedHistories(before int64) {
|
||||
historyDBQueueLock.Lock()
|
||||
defer historyDBQueueLock.Unlock()
|
||||
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue