1
0
mirror of https://github.com/wulkanowy/wulkanowy.git synced 2024-11-23 15:56:37 -06:00

Fix showing error view in timetable (#1472)

This commit is contained in:
Mikołaj Pich 2021-09-04 15:54:05 +02:00 committed by GitHub
parent c3adb9b6d6
commit 8d7b611c44
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
2 changed files with 2 additions and 2 deletions

View File

@ -157,7 +157,7 @@ ext {
}
dependencies {
implementation "io.github.wulkanowy:sdk:1.2.0"
implementation "io.github.wulkanowy:sdk:7c399ffaea"
coreLibraryDesugaring 'com.android.tools:desugar_jdk_libs:1.1.5'

View File

@ -49,7 +49,7 @@ class TimetableFragment : BaseFragment<FragmentTimetableBinding>(R.layout.fragme
override val titleStringId get() = R.string.timetable_title
override val isViewEmpty get() = timetableAdapter.itemCount > 0
override val isViewEmpty get() = timetableAdapter.itemCount == 0
override val currentStackSize get() = (activity as? MainActivity)?.currentStackSize