1
0
mirror of https://github.com/salvadordf/CEF4Delphi.git synced 2025-06-12 22:07:39 +02:00

Update to CEF 103.0.12

Fixed issue #430 : GlobalCEFApp.DeleteCache deletes the cookies too.
This commit is contained in:
salvadordf
2022-07-21 14:11:32 +02:00
parent 2b0ba99e98
commit f218105a98
4 changed files with 24 additions and 15 deletions

View File

@ -2472,7 +2472,7 @@ begin
if (TempRec.Name <> '.') and (TempRec.Name <> '..') then
begin
if DeleteDirContents(TempPath, aExcludeFiles) then
Result := RemoveDir(TempPath) and Result
Result := ((TempRec.Name = 'Network') or RemoveDir(TempPath)) and Result
else
Result := False;
end;