2
0
mirror of https://github.com/fork-maintainers/iceraven-browser synced 2024-11-19 09:25:34 +00:00

[fenix] Closes https://github.com/mozilla-mobile/fenix/issues/1315: Re-introduce FxA interceptor to make auth work

This was removed accidentally, let's add it back in, but now with a clarifying comment :)
This commit is contained in:
Grisha Kruglov 2019-04-04 12:41:06 -07:00 committed by Jeff Boek
parent baf6c00094
commit c29da2e065

View File

@ -9,8 +9,14 @@ import mozilla.components.browser.errorpages.ErrorPages
import mozilla.components.browser.errorpages.ErrorType
import mozilla.components.concept.engine.EngineSession
import mozilla.components.concept.engine.request.RequestInterceptor
import org.mozilla.fenix.ext.components
class AppRequestInterceptor(private val context: Context) : RequestInterceptor {
override fun onLoadRequest(session: EngineSession, uri: String): RequestInterceptor.InterceptionResponse? {
// Accounts uses interception to check for a "success URL" in the sign-in flow to finalize authentication.
return context.components.services.accountsAuthFeature.interceptor.onLoadRequest(session, uri)
}
override fun onErrorRequest(
session: EngineSession,
errorType: ErrorType,