We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent f929914 commit 84a57adCopy full SHA for 84a57ad
CefSharp.Core.Runtime/RequestContext.h
@@ -118,7 +118,7 @@ namespace CefSharp
118
/// <returns>Returns a new RequestContext</returns>
119
static IRequestContext^ CreateContext(IRequestContext^ other, IRequestContextHandler^ requestContextHandler)
120
{
121
- auto otherRequestContext = static_cast<RequestContext^>(other);
+ auto otherRequestContext = static_cast<RequestContext^>(other->UnWrap());
122
CefRefPtr<CefRequestContextHandler> handler = requestContextHandler == nullptr ? NULL : new CefRequestContextHandlerAdapter(requestContextHandler);
123
124
auto newContext = CefRequestContext::CreateContext(otherRequestContext, handler);
0 commit comments