Skip to content

Commit

Permalink
Fix delete items in tag issue
Browse files Browse the repository at this point in the history
  • Loading branch information
ismartcoding committed Jun 3, 2024
1 parent 7a37e8d commit f3a1fd1
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 4 deletions.
4 changes: 2 additions & 2 deletions app/build.gradle.kts
Original file line number Diff line number Diff line change
Expand Up @@ -37,9 +37,9 @@ android {
else -> 0
}

val vCode = 301
val vCode = 304
versionCode = vCode - singleAbiNum
versionName = "1.2.56"
versionName = "1.2.57"

ndk {
//noinspection ChromeOsAbiSupport
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -166,11 +166,11 @@ abstract class BaseContentHelper {
}
}

fun getIds(
suspend fun getIds(
context: Context,
query: String,
): Set<String> {
val cursor = getSearchCursor(context, query)
val cursor = getSearchCursor(context, QueryHelper.prepareQuery(query))
val ids = mutableSetOf<String>()
if (cursor?.moveToFirst() == true) {
val cache = mutableMapOf<String, Int>()
Expand Down

0 comments on commit f3a1fd1

Please sign in to comment.