diff --git a/indra/newview/llappviewer.cpp b/indra/newview/llappviewer.cpp index 0a974bcca2b01c00161f87ce4828aacb1cf3cfb5..7311b6bdd42677944cc82f71a75fdc81275b722f 100644 --- a/indra/newview/llappviewer.cpp +++ b/indra/newview/llappviewer.cpp @@ -4373,6 +4373,11 @@ void LLAppViewer::purgeCache() // cef does not support clear_cache and clear_cookies, so clear what we can manually. gDirUtilp->deleteDirAndContents(browser_cache); } + std::string browser_data = gDirUtilp->getExpandedFilename(LL_PATH_CACHE, "cef_data"); + if (LLFile::isdir(browser_data)) + { + gDirUtilp->deleteDirAndContents(browser_data); + } gDirUtilp->deleteFilesInDir(gDirUtilp->getExpandedFilename(LL_PATH_CACHE, ""), "*"); }