Skip to content
This repository has been archived by the owner on Jan 3, 2024. It is now read-only.

Bugfix/fix compilation error on ios for 8.0.0.beta9 #628

Merged
merged 2 commits into from
Mar 30, 2020
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion ios/TPSStripe/TPSStripeManager.m
Original file line number Diff line number Diff line change
Expand Up @@ -126,7 +126,7 @@ + (NSString *)STPPaymentMethodTypeString:(STPPaymentMethodType)type {
case STPPaymentMethodTypeCard: return @"card";
case STPPaymentMethodTypeiDEAL: return @"iDEAL";
case STPPaymentMethodTypeCardPresent: return @"card_present";
case STPPaymentMethodTypeFPX: return @"fpx";
case STPPaymentMethodTypeFPX: // unsupported at this time (fall through)
case STPPaymentMethodTypeUnknown:
default: return @"unknown";
}
Expand Down