1
0
mirror of https://github.com/salvadordf/CEF4Delphi.git synced 2024-11-24 08:02:15 +02:00

Added workaround the issue #427 in ResponseFilterBrowser

This commit is contained in:
salvadordf 2022-07-02 20:31:57 +02:00
parent 7230669a4b
commit 317e4eae16
3 changed files with 7 additions and 1 deletions

View File

@ -195,6 +195,9 @@ begin
GlobalCEFApp := TCefApplication.Create;
GlobalCEFApp.LogFile := 'cef.log';
GlobalCEFApp.LogSeverity := LOGSEVERITY_VERBOSE;
// Workaround for CEF issue #3345
// https://bitbucket.org/chromiumembedded/cef/issues/3345/getresourceresponsefilter-not-called-for
GlobalCEFApp.DisableFeatures := 'CombineResponseBody';
end;
procedure TResponseFilterBrowserFrm.Filter_OnFilter( Sender : TObject;

View File

@ -185,6 +185,9 @@ begin
GlobalCEFApp := TCefApplication.Create;
GlobalCEFApp.LogFile := 'cef.log';
GlobalCEFApp.LogSeverity := LOGSEVERITY_VERBOSE;
// Workaround for CEF issue #3345
// https://bitbucket.org/chromiumembedded/cef/issues/3345/getresourceresponsefilter-not-called-for
GlobalCEFApp.DisableFeatures := 'CombineResponseBody';
end;
procedure TResponseFilterBrowserFrm.Filter_OnFilter( Sender : TObject;

View File

@ -2,7 +2,7 @@
"UpdateLazPackages" : [
{
"ForceNotify" : true,
"InternalVersion" : 410,
"InternalVersion" : 411,
"Name" : "cef4delphi_lazarus.lpk",
"Version" : "103.0.8.0"
}