Skip to content

Commit

Permalink
Merge pull request #4108 from /issues/7132
Browse files Browse the repository at this point in the history
Fixes wrong ads server url for ads/confirmations development environment
  • Loading branch information
tmancey authored Nov 30, 2019
2 parents 96b9aab + 6590e86 commit 40c82ce
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion vendor/bat-native-ads/src/bat/ads/internal/static_values.h
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@ namespace ads {

#define PRODUCTION_SERVER "https://ads-serve.brave.com"
#define STAGING_SERVER "https://ads-serve.bravesoftware.com"
#define DEVELOPMENT_SERVER "https://ads-serve.brave.software.com"
#define DEVELOPMENT_SERVER "https://ads-serve.brave.software"

#define CATALOG_PATH "/v2/catalog"

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -14,11 +14,11 @@ namespace confirmations {

#define BAT_ADS_PRODUCTION_SERVER "https://ads-serve.brave.com"
#define BAT_ADS_STAGING_SERVER "https://ads-serve.bravesoftware.com"
#define BAT_ADS_DEVELOPMENT_SERVER "https://ads-serve.brave.software.com"
#define BAT_ADS_DEVELOPMENT_SERVER "https://ads-serve.brave.software"

#define BAT_LEDGER_PRODUCTION_SERVER "https://ledger.mercury.basicattentiontoken.org" // NOLINT
#define BAT_LEDGER_STAGING_SERVER "https://ledger-staging.mercury.basicattentiontoken.org" // NOLINT
#define BAT_LEDGER_DEVELOPMENT_SERVER "https://ledger.rewards.brave.software.org" // NOLINT
#define BAT_LEDGER_DEVELOPMENT_SERVER "https://ledger.rewards.brave.software" // NOLINT

static const int kNextPaymentDay = 5;

Expand Down

0 comments on commit 40c82ce

Please sign in to comment.