mirror of
https://github.com/gkd-kit/gkd.git
synced 2024-11-15 19:22:26 +08:00
fix: set max size
This commit is contained in:
parent
ea0bf80265
commit
a57fe608f9
|
@ -460,7 +460,7 @@ fun createCacheTransform(): CacheTransform {
|
|||
yield(top)
|
||||
}
|
||||
offset++
|
||||
if (offset >= MAX_DESCENDANTS_SIZE) {
|
||||
if (offset > MAX_DESCENDANTS_SIZE) {
|
||||
return@sequence
|
||||
}
|
||||
connectExpression.maxOffset?.let { maxOffset ->
|
||||
|
|
Loading…
Reference in New Issue
Block a user