Skip to content
This repository was archived by the owner on Oct 10, 2025. It is now read-only.

Commit c172428

Browse files
authored
Fix locale missin the url (#30)
1 parent 63df253 commit c172428

File tree

2 files changed

+3
-2
lines changed

2 files changed

+3
-2
lines changed

MagicSDK.podspec

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33
#
44
Pod::Spec.new do |s|
55
s.name = 'MagicSDK'
6-
s.version = '9.1.0'
6+
s.version = '9.1.1'
77
s.summary = 'Magic IOS SDK'
88

99
s.description = <<-DESC

Sources/MagicSDK/Core/Relayer/URLBuilder.swift

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -63,7 +63,7 @@ public struct URLBuilder {
6363
enum CodingKeys: String, CodingKey {
6464
case apiKey = "API_KEY"
6565
case ethNetwork = "ETH_NETWORK"
66-
case bundleId, host, sdk
66+
case bundleId, host, sdk, locale
6767
}
6868

6969
func encode(to encoder: Encoder) throws {
@@ -74,6 +74,7 @@ public struct URLBuilder {
7474

7575
try container.encode(apiKey, forKey: .apiKey)
7676
try container.encode(URLBuilder.host, forKey: .host)
77+
try container.encode(locale, forKey: .locale)
7778

7879

7980
if let node = customNode {

0 commit comments

Comments
 (0)