This commit is contained in:
InsanusMokrassar 2020-08-29 19:11:36 +06:00
parent 270be95784
commit 69bfa56692
1 changed files with 3 additions and 4 deletions

View File

@ -16,8 +16,7 @@ import io.ktor.utils.io.core.Input
import kotlinx.coroutines.*
import kotlinx.coroutines.channels.Channel
import kotlinx.serialization.json.Json
import kotlin.coroutines.Continuation
import kotlin.coroutines.suspendCoroutine
import kotlin.coroutines.*
private const val API_TOKEN_FIELD = "api_key"
private const val OUTPUT_TYPE_FIELD = "output_type"
@ -60,7 +59,7 @@ data class SauceNaoAPI(
launch {
try {
val answer = makeRequest(requestBuilder)
callback.resumeWith(Result.success(answer))
callback.resume(answer)
quotaManager.updateQuota(answer.header, timeManager)
} catch (e: TooManyRequestsException) {
@ -68,7 +67,7 @@ data class SauceNaoAPI(
requestsChannel.send(callback to requestBuilder)
} catch (e: Exception) {
try {
callback.resumeWith(Result.failure(e))
callback.resume(e)
} catch (e: IllegalStateException) { // may happen when already resumed and api was closed
// do nothing
}