Fix CacheController lookup
continuous-integration/woodpecker the build was successful Details

This commit is contained in:
Hannes Braun 2022-01-14 15:42:25 +01:00
parent f49e600613
commit 006e962bf1
Signed by: hannesbraun
GPG Key ID: 7B6557E1DFD685BE
1 changed files with 1 additions and 1 deletions

View File

@ -88,7 +88,7 @@ class CacheController {
}
val key = "$courseName-$weekIndex"
return if (timetableList.contains(key)) {
return if (timetableList.containsKey(key)) {
timetableList[key]!!
} else {
val timetableLink = courseList.courses[courseName]