mirror of
https://github.com/siyuan-note/siyuan.git
synced 2025-12-17 07:00:12 +01:00
🐛 数据统计间隔步长错误
This commit is contained in:
parent
7e214231d9
commit
441c0ddef4
1 changed files with 1 additions and 1 deletions
|
|
@ -240,7 +240,7 @@ func CeilSize(size int64) int64 {
|
|||
|
||||
for i := int64(1); i < 40; i++ {
|
||||
if 1024*1024*200*i > size {
|
||||
return 1024 * 1024 * int64(i)
|
||||
return 1024 * 1024 * 200 * i
|
||||
}
|
||||
}
|
||||
return 1024*1024*200*40 + 1
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue