Skip to content

Commit f3a1fd1

Browse files
committed
Fix delete items in tag issue
1 parent 7a37e8d commit f3a1fd1

File tree

2 files changed

+4
-4
lines changed

2 files changed

+4
-4
lines changed

app/build.gradle.kts

+2-2
Original file line numberDiff line numberDiff line change
@@ -37,9 +37,9 @@ android {
3737
else -> 0
3838
}
3939

40-
val vCode = 301
40+
val vCode = 304
4141
versionCode = vCode - singleAbiNum
42-
versionName = "1.2.56"
42+
versionName = "1.2.57"
4343

4444
ndk {
4545
//noinspection ChromeOsAbiSupport

app/src/main/java/com/ismartcoding/plain/features/BaseContentHelper.kt

+2-2
Original file line numberDiff line numberDiff line change
@@ -166,11 +166,11 @@ abstract class BaseContentHelper {
166166
}
167167
}
168168

169-
fun getIds(
169+
suspend fun getIds(
170170
context: Context,
171171
query: String,
172172
): Set<String> {
173-
val cursor = getSearchCursor(context, query)
173+
val cursor = getSearchCursor(context, QueryHelper.prepareQuery(query))
174174
val ids = mutableSetOf<String>()
175175
if (cursor?.moveToFirst() == true) {
176176
val cache = mutableMapOf<String, Int>()

0 commit comments

Comments
 (0)