mirror of
https://github.com/szkolny-eu/szkolny-android.git
synced 2024-11-24 10:54:36 -06:00
[API/Vulcan] Fix missing attendance. (#72)
This commit is contained in:
parent
e902352a4b
commit
118f5e1794
@ -38,7 +38,7 @@ class VulcanHebeAttendance(
|
|||||||
lastSync = lastSync
|
lastSync = lastSync
|
||||||
) { list, _ ->
|
) { list, _ ->
|
||||||
list.forEach { attendance ->
|
list.forEach { attendance ->
|
||||||
val id = attendance.getLong("AuxPresenceId") ?: return@forEach
|
val id = attendance.getLong("Id") ?: return@forEach
|
||||||
val type = attendance.getJsonObject("PresenceType") ?: return@forEach
|
val type = attendance.getJsonObject("PresenceType") ?: return@forEach
|
||||||
val baseType = getBaseType(type)
|
val baseType = getBaseType(type)
|
||||||
val typeName = type.getString("Name") ?: return@forEach
|
val typeName = type.getString("Name") ?: return@forEach
|
||||||
|
Loading…
Reference in New Issue
Block a user