Skip to content

Commit ab4817b

Browse files
authored
Merge pull request #74 from pokepay/fix/kana-missing-in-dict
Add kana to params dict for CreateBankPay
2 parents 6f93ef0 + c978159 commit ab4817b

File tree

3 files changed

+6
-2
lines changed

3 files changed

+6
-2
lines changed

Pokepay.podspec

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
Pod::Spec.new do |s|
22
s.name = "Pokepay"
3-
s.version = "2.0.9"
3+
s.version = "2.0.10"
44
s.summary = "Pokepay iOS SDK."
55
s.description = <<-DESC
66
iOS SDK for Pokepay written in Swift.

Pokepay.xcodeproj/Pokepay_Info.plist

+1-1
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@
1515
<key>CFBundlePackageType</key>
1616
<string>FMWK</string>
1717
<key>CFBundleShortVersionString</key>
18-
<string>2.0.9</string>
18+
<string>2.0.10</string>
1919
<key>CFBundleSignature</key>
2020
<string>????</string>
2121
<key>CFBundleVersion</key>

Sources/Pokepay/BankAPI/User/CreateBankPay.swift

+4
Original file line numberDiff line numberDiff line change
@@ -28,6 +28,10 @@ public extension BankAPI.User {
2828

2929
dict["callback_url"] = callbackUrl
3030
dict["private_money_id"] = privateMoneyId
31+
32+
if kana != nil {
33+
dict["kana"] = kana
34+
}
3135

3236
return dict
3337
}

0 commit comments

Comments
 (0)