Skip to content

Commit

Permalink
Merge pull request #1336 from brave/disabled-ac
Browse files Browse the repository at this point in the history
Fixes publisher not showing in the panel if ac off
  • Loading branch information
NejcZdovc committed Jan 14, 2019
1 parent bde566a commit bc0c876
Showing 1 changed file with 4 additions and 6 deletions.
10 changes: 4 additions & 6 deletions vendor/bat-native-ledger/src/bat_publishers.cc
Original file line number Diff line number Diff line change
Expand Up @@ -85,10 +85,6 @@ void BatPublishers::MakePayment(const ledger::PaymentData& payment_data) {
payment_data, _1, _2));
}

bool BatPublishers::saveVisitAllowed() const {
return (ledger_->GetRewardsMainEnabled() && ledger_->GetAutoContribute());
}

void onVisitSavedDummy(ledger::Result result,
std::unique_ptr<ledger::PublisherInfo> publisher_info) {
// onPublisherInfoUpdated will always be called by LedgerImpl so do nothing
Expand All @@ -97,7 +93,7 @@ void onVisitSavedDummy(ledger::Result result,
void BatPublishers::saveVisit(const std::string& publisher_id,
const ledger::VisitData& visit_data,
const uint64_t& duration) {
if (!saveVisitAllowed() || publisher_id.empty()) {
if (!ledger_->GetRewardsMainEnabled() || publisher_id.empty()) {
return;
}

Expand Down Expand Up @@ -248,8 +244,10 @@ void BatPublishers::saveVisitInternal(

// set duration to 0 if you don't have sufficient visit time
// or if you set ac to only verified and site is not verified
// or if auto contribute if off
if ((!ignoreMinTime(publisher_id) && duration < getPublisherMinVisitTime()) ||
(!ledger_->GetPublisherAllowNonVerified() && !verified)) {
(!ledger_->GetPublisherAllowNonVerified() && !verified) ||
!ledger_->GetAutoContribute()) {
duration = 0;
}

Expand Down

0 comments on commit bc0c876

Please sign in to comment.