release/2.0 #21

Merged
fabian merged 137 commits from release/2.0 into master 2023-01-28 23:29:27 +01:00
Showing only changes of commit 30c8941bd1 - Show all commits

View File

@@ -46,7 +46,7 @@ class GameRepository @Inject constructor(private val gameDao: GameDao, private
{
return withContext(Dispatchers.IO) {
val active = getActiveGame()
return@withContext roundDao.getAllForGame(active.uid)
return@withContext roundDao.getAllForGame(active?.uid)
}
}