You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
It's not always reproducible, but typically, it happens at the startup.
The error is:
RealHTTP/HTTPStubURLProtocol.swift:18: Fatal error: Use of unimplemented initializer 'init(request:cachedResponse:client:)' for class 'RealHTTP.HTTPStubURLProtocol'
(lldb)
Expected Behavior
Init continue w/o crash
Actual Incorrect Behavior
Crash of the hosted app.
The text was updated successfully, but these errors were encountered:
Solution to this bug is to implement the callback and call super:
// Occasionally called by iOS, even though init(task:...) is implemented. Will cause a crash if not present.
overrideinit(request:URLRequest, cachedResponse:CachedURLResponse?, client:URLProtocolClient?){
super.init(request: request, cachedResponse: cachedResponse, client: client)}
Platform Version
Any
SDK Version
Any
Xcode Version
Any
Steps To Reproduce
It's not always reproducible, but typically, it happens at the startup.
The error is:
Expected Behavior
Init continue w/o crash
Actual Incorrect Behavior
Crash of the hosted app.
The text was updated successfully, but these errors were encountered: