Skip to content

Commit

Permalink
[storekit] Fix CampaignToken typo (#2559) (#2560)
Browse files Browse the repository at this point in the history
- Fixes bug #59078: StoreProductParameters and invalid property for CampaignToken
(https://bugzilla.xamarin.com/show_bug.cgi?id=59078)
  • Loading branch information
VincentDondain authored and spouliot committed Aug 28, 2017
1 parent 38d8143 commit f951857
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/StoreKit/StoreProductParameters.cs
Expand Up @@ -76,10 +76,10 @@ public StoreProductParameters (int iTunesItemIdentifier)

public string CampaignToken {
get {
return GetStringValue (SKStoreProductParameterKey.AffiliateToken);
return GetStringValue (SKStoreProductParameterKey.CampaignToken);
}
set {
SetStringValue (SKStoreProductParameterKey.AffiliateToken, value);
SetStringValue (SKStoreProductParameterKey.CampaignToken, value);
}
}
#endif
Expand Down

0 comments on commit f951857

Please sign in to comment.