File tree 2 files changed +4
-4
lines changed
src/main/java/com/ismartcoding/plain/features
2 files changed +4
-4
lines changed Original file line number Diff line number Diff line change @@ -37,9 +37,9 @@ android {
37
37
else -> 0
38
38
}
39
39
40
- val vCode = 301
40
+ val vCode = 304
41
41
versionCode = vCode - singleAbiNum
42
- versionName = " 1.2.56 "
42
+ versionName = " 1.2.57 "
43
43
44
44
ndk {
45
45
// noinspection ChromeOsAbiSupport
Original file line number Diff line number Diff line change @@ -166,11 +166,11 @@ abstract class BaseContentHelper {
166
166
}
167
167
}
168
168
169
- fun getIds (
169
+ suspend fun getIds (
170
170
context : Context ,
171
171
query : String ,
172
172
): Set <String > {
173
- val cursor = getSearchCursor(context, query)
173
+ val cursor = getSearchCursor(context, QueryHelper .prepareQuery( query) )
174
174
val ids = mutableSetOf<String >()
175
175
if (cursor?.moveToFirst() == true ) {
176
176
val cache = mutableMapOf<String , Int >()
You can’t perform that action at this time.
0 commit comments