mirror of
				https://github.com/mihonapp/mihon.git
				synced 2025-11-04 08:08:55 +01:00 
			
		
		
		
	Revert parseAs inline function change
Some people sometimes get compile issues?
This commit is contained in:
		@@ -14,7 +14,7 @@ import rx.Observable
 | 
			
		||||
import rx.Producer
 | 
			
		||||
import rx.Subscription
 | 
			
		||||
import uy.kohesive.injekt.Injekt
 | 
			
		||||
import uy.kohesive.injekt.api.get
 | 
			
		||||
import uy.kohesive.injekt.api.fullType
 | 
			
		||||
import java.io.IOException
 | 
			
		||||
import java.util.concurrent.atomic.AtomicBoolean
 | 
			
		||||
import kotlin.coroutines.resumeWithException
 | 
			
		||||
@@ -116,6 +116,10 @@ fun OkHttpClient.newCallWithProgress(request: Request, listener: ProgressListene
 | 
			
		||||
}
 | 
			
		||||
 | 
			
		||||
inline fun <reified T> Response.parseAs(): T {
 | 
			
		||||
    val responseBody = this.body?.string().orEmpty()
 | 
			
		||||
    return Injekt.get<Json>().decodeFromString(responseBody)
 | 
			
		||||
    // Avoiding Injekt.get<Json>() due to compiler issues
 | 
			
		||||
    val json = Injekt.getInstance<Json>(fullType<Json>().type)
 | 
			
		||||
    this.use {
 | 
			
		||||
        val responseBody = it.body?.string().orEmpty()
 | 
			
		||||
        return json.decodeFromString(responseBody)
 | 
			
		||||
    }
 | 
			
		||||
}
 | 
			
		||||
 
 | 
			
		||||
		Reference in New Issue
	
	Block a user