Merge pull request 'Fix CacheController lookup' (#23) from fix/cache-controller into master
continuous-integration/woodpecker the build was successful Details

Reviewed-on: #23
This commit is contained in:
Jannik 2022-01-14 18:46:24 +01:00
commit f7c8958d20
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]