Skip to content

Commit

Permalink
0.2.8 分区搜索区分大小写
Browse files Browse the repository at this point in the history
  • Loading branch information
guyijie1211 committed Apr 5, 2022
1 parent 6746970 commit f7062fd
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
4 changes: 2 additions & 2 deletions app/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -14,8 +14,8 @@ android {
applicationId "com.yj1211.justlive"
minSdk 21
targetSdk 30
versionCode 18
versionName "0.2.7"
versionCode 19
versionName "0.2.8"

testInstrumentationRunner "androidx.test.runner.AndroidJUnitRunner"
}
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -272,7 +272,7 @@ class AreaPopup(context: Context) : BottomPopupView(context), View.OnClickListen
area_search.showLeftButton()
areaMap.values.forEach { list ->
list.forEach { area ->
if (area.getString("areaName").contains(query)) {
if (area.getString("areaName").lowercase().contains(query.lowercase())) {
var areaInfo = AreaInfo(
area.getString("platform"),
area.getString("areaType"),
Expand Down

0 comments on commit f7062fd

Please sign in to comment.