Merge pull request #190 from InsanusMokrassar/0.12.10

0.12.10
This commit is contained in:
InsanusMokrassar 2022-09-07 23:54:33 +06:00 committed by GitHub
commit 48e08fcc69
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
3 changed files with 10 additions and 6 deletions

View File

@ -1,5 +1,11 @@
# Changelog
## 0.12.10
* `Repos`:
* `Cache`:
* Hotfix in key values `get`
## 0.12.9
* `Versions`:

View File

@ -14,5 +14,5 @@ crypto_js_version=4.1.1
# Project data
group=dev.inmo
version=0.12.9
android_code_version=148
version=0.12.10
android_code_version=149

View File

@ -13,10 +13,8 @@ open class ReadKeyValuesCacheRepo<Key,Value>(
protected open val kvCache: KVCache<Key, List<Value>>
) : ReadKeyValuesRepo<Key,Value> by parentRepo, CacheRepo {
override suspend fun get(k: Key, pagination: Pagination, reversed: Boolean): PaginationResult<Value> {
val count = count(k)
return getAll(k, reversed).createPaginationResult(
pagination,
count
return getAll(k, reversed).paginate(
pagination
)
}
override suspend fun getAll(k: Key, reversed: Boolean): List<Value> {