Skip to content

Commit

Permalink
Merge pull request #19 from argaasasta/patch-1
Browse files Browse the repository at this point in the history
Update FlipperOkhttpInterceptor.kt
  • Loading branch information
theGlenn authored Nov 9, 2021
2 parents ff709ba + 86edf3d commit 3cbdf3c
Showing 1 changed file with 5 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -3,8 +3,11 @@ package com.facebook.flipper.plugins.network
import okhttp3.Interceptor
import okhttp3.Response

class FlipperOkhttpInterceptor(private val plugin: NetworkFlipperPlugin) : Interceptor {
class FlipperOkhttpInterceptor(
private val plugin: NetworkFlipperPlugin,
private val isMockResponseSupported: Boolean? = true
) : Interceptor {
override fun intercept(chain: Interceptor.Chain): Response {
return chain.proceed(chain.request())
}
}
}

0 comments on commit 3cbdf3c

Please sign in to comment.