File tree Expand file tree Collapse file tree
Expand file tree Collapse file tree Original file line number Diff line number Diff line change 11Pod ::Spec . new do |spec |
22
33 spec . name = "AppStoreManager"
4- spec . version = "1.3.5 "
4+ spec . version = "1.3.6 "
55 spec . summary = "A new version checking framework in Swift."
66
77 spec . homepage = "https://knottx.github.io"
Original file line number Diff line number Diff line change @@ -11,7 +11,7 @@ pod 'AppStoreManager'
1111### Swift Package Manager
1212- File > Swift Packages > Add Package Dependency
1313- Add ` https://github.com/knottx/AppStoreManager.git `
14- - Select "Up to Next Major" with "1.3.5 "
14+ - Select "Up to Next Major" with "1.3.6 "
1515
1616## 📝 How
1717
Original file line number Diff line number Diff line change @@ -52,7 +52,7 @@ public class AppStoreManager {
5252 completion: @escaping ( AppStoreResult ? ) -> Void ) {
5353 var baseUrl = " https://itunes.apple.com "
5454 if let code = countryCode {
55- baseUrl. append ( " / \( code) " )
55+ baseUrl. append ( " / \( code. lowercased ( ) ) " )
5656 }
5757 baseUrl. append ( " /lookup?bundleId= \( self . bundleId) " )
5858 guard let url = URL ( string: baseUrl) else {
@@ -181,7 +181,7 @@ public class AppStoreManager {
181181 id appStoreId: Int ) {
182182 var baseUrl = " https://itunes.apple.com "
183183 if let code = countryCode {
184- baseUrl. append ( " / \( code) " )
184+ baseUrl. append ( " / \( code. lowercased ( ) ) " )
185185 }
186186 baseUrl. append ( " /app/id \( appStoreId) " )
187187 if let url = URL ( string: baseUrl) ,
You can’t perform that action at this time.
0 commit comments