Skip to content

Commit

Permalink
Merge pull request #27017 from brave/update-stats-updater
Browse files Browse the repository at this point in the history
Fix `BraveStatsUpdater` instantiation
  • Loading branch information
DJAndries authored Dec 13, 2024
2 parents 6f8689f + 2a2611d commit 7d3a262
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion browser/brave_browser_process_impl.cc
Original file line number Diff line number Diff line change
Expand Up @@ -431,7 +431,7 @@ BraveBrowserProcessImpl::brave_referrals_service() {
brave_stats::BraveStatsUpdater* BraveBrowserProcessImpl::brave_stats_updater() {
if (!brave_stats_updater_) {
brave_stats_updater_ = std::make_unique<brave_stats::BraveStatsUpdater>(
local_state(), g_browser_process->profile_manager());
local_state(), profile_manager());
}
return brave_stats_updater_.get();
}
Expand Down

0 comments on commit 7d3a262

Please sign in to comment.