feat: separate backend base URL configurations for release and debug builds
All checks were successful
Deploy tt-tagebuch / deploy (push) Successful in 46s
All checks were successful
Deploy tt-tagebuch / deploy (push) Successful in 46s
This commit is contained in:
@@ -64,7 +64,13 @@ class TournamentsApi(
|
||||
}
|
||||
|
||||
suspend fun getTournament(clubId: Int, tournamentId: Int): InternalTournamentDetailDto {
|
||||
return client.http.get("/api/tournament/$clubId/$tournamentId").body()
|
||||
val result: InternalTournamentDetailDto = client.http.get("/api/tournament/$clubId/$tournamentId").body()
|
||||
try {
|
||||
println("[TournamentsApi] getTournament -> numberOfTables: ${'$'}{result.numberOfTables}")
|
||||
} catch (t: Throwable) {
|
||||
// ignore on platforms where println may not be available
|
||||
}
|
||||
return result
|
||||
}
|
||||
|
||||
suspend fun getInternalTournamentStats(
|
||||
|
||||
Reference in New Issue
Block a user