Skip to content

Commit

Permalink
Merge pull request #4914 from /issues/8646
Browse files Browse the repository at this point in the history
Fixes category name is missing from ad history
  • Loading branch information
tmancey authored Mar 13, 2020
2 parents 1588787 + c6fd1d4 commit 8ee250b
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion components/brave_ads/browser/bundle_state_database.cc
Original file line number Diff line number Diff line change
Expand Up @@ -482,7 +482,7 @@ bool BundleStateDatabase::GetCreativeAdNotifications(
info.advertiser_id = statement.ColumnString(10);
info.per_day = statement.ColumnInt(11);
info.total_max = statement.ColumnInt(12);
info.category = statement.ColumnInt(13);
info.category = statement.ColumnString(13);
ads->emplace_back(info);
}

Expand Down

0 comments on commit 8ee250b

Please sign in to comment.