Skip to content

Commit

Permalink
Uplift of #4907 (squashed) to beta
Browse files Browse the repository at this point in the history
  • Loading branch information
brave-browser-releases committed Mar 12, 2020
1 parent 55ca7e0 commit f9afc55
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion components/brave_rewards/browser/rewards_service_impl.cc
Original file line number Diff line number Diff line change
Expand Up @@ -255,7 +255,7 @@ bool ResetOnFileTaskRunner(const base::FilePath& path) {
bool ResetOnFilesTaskRunner(const std::vector<base::FilePath>& paths) {
bool res = true;
for (size_t i = 0; i < paths.size(); i++) {
if (!base::DeleteFile(paths[i], false)) {
if (!base::DeleteFileRecursively(paths[i])) {
res = false;
}
}
Expand Down

0 comments on commit f9afc55

Please sign in to comment.