Fix crash on delete (app|message|client)
This commit is contained in:
@@ -4,6 +4,19 @@ import retrofit2.Call
|
||||
import java.io.IOException
|
||||
|
||||
internal object Api {
|
||||
@Throws(ApiException::class)
|
||||
fun execute(call: Call<Void>) {
|
||||
try {
|
||||
val response = call.execute()
|
||||
|
||||
if (!response.isSuccessful) {
|
||||
throw ApiException(response)
|
||||
}
|
||||
} catch (e: IOException) {
|
||||
throw ApiException(e)
|
||||
}
|
||||
}
|
||||
|
||||
@Throws(ApiException::class)
|
||||
fun <T> execute(call: Call<T>): T {
|
||||
try {
|
||||
|
||||
Reference in New Issue
Block a user