Skip to content

Commit

Permalink
Fix "Staging pixel url called with prod configuration" bug
Browse files Browse the repository at this point in the history
  • Loading branch information
Abishekh-S-Kamath authored Jul 1, 2022
1 parent 58330ec commit 2ccff16
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion BVSDK/BVAnalytics/Private/BVAnalyticsManager.m
Original file line number Diff line number Diff line change
Expand Up @@ -593,7 +593,7 @@ - (nonnull NSString *)baseUrl {
return [localeServiceManager
resourceForService:BVLocaleServiceManagerServiceAnalytics
withLocale:self.analyticsLocale
andIsProduction:(!self.isStagingServer)];
andIsProduction:![self.isStagingServer boolValue]];
}

#pragma mark - Testing
Expand Down

0 comments on commit 2ccff16

Please sign in to comment.