diff options
-rw-r--r-- | system/db/content.go | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/system/db/content.go b/system/db/content.go index a3a4da1..30010e8 100644 --- a/system/db/content.go +++ b/system/db/content.go @@ -246,7 +246,7 @@ func Query(namespace string, opts QueryOptions) [][]byte { continue } - if cur >= start { + if cur <= start { break } |