We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 7a37e8d commit f3a1fd1Copy full SHA for f3a1fd1
app/build.gradle.kts
@@ -37,9 +37,9 @@ android {
37
else -> 0
38
}
39
40
- val vCode = 301
+ val vCode = 304
41
versionCode = vCode - singleAbiNum
42
- versionName = "1.2.56"
+ versionName = "1.2.57"
43
44
ndk {
45
//noinspection ChromeOsAbiSupport
app/src/main/java/com/ismartcoding/plain/features/BaseContentHelper.kt
@@ -166,11 +166,11 @@ abstract class BaseContentHelper {
166
167
168
169
- fun getIds(
+ suspend fun getIds(
170
context: Context,
171
query: String,
172
): Set<String> {
173
- val cursor = getSearchCursor(context, query)
+ val cursor = getSearchCursor(context, QueryHelper.prepareQuery(query))
174
val ids = mutableSetOf<String>()
175
if (cursor?.moveToFirst() == true) {
176
val cache = mutableMapOf<String, Int>()
0 commit comments