Fixed a bug that would cause the canteen plan to crash after refreshing while trying to layout the TabMediatorLayout. I don't know why that happened.

This commit is contained in:
denizk0461
2023-04-21 14:20:06 +02:00
parent b39aa1f003
commit ab316d9871
4 changed files with 38 additions and 29 deletions
@@ -66,7 +66,7 @@ interface EventDAO {
@get:Query("SELECT id FROM offer_date")
val updateObserver: LiveData<List<Int>>
@Query("SELECT * FROM offer_date")
@Query("SELECT * FROM offer_date ORDER BY id")
fun getDates(): List<OfferDate>
@Query("DELETE FROM offer_date")