We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent d75a651 commit f32becfCopy full SHA for f32becf
app/build.gradle
@@ -4,7 +4,7 @@ apply plugin: 'kotlin-android'
4
apply plugin: 'kotlin-android-extensions'
5
6
group = 'com.kylecorry'
7
-version = '2.4.0'
+version = '2.4.1'
8
9
android {
10
compileSdkVersion 30
app/src/main/java/com/kylecorry/trailsensecore/domain/weather/clouds/CloudService.kt
@@ -63,7 +63,7 @@ class CloudService : ICloudService {
63
}
64
65
override fun getCloudsByHeight(height: CloudHeight): List<CloudType> {
66
- return CloudType.values().filter { it.height.contains(height) }
+ return CloudType.values().filter { it.height == height }
67
68
69
override fun getCloudsByColor(color: CloudColor): List<CloudType> {
0 commit comments