Skip to content
This repository was archived by the owner on Oct 10, 2025. It is now read-only.
Merged
Show file tree
Hide file tree
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 MagicSDK.podspec
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
#
Pod::Spec.new do |s|
s.name = 'MagicSDK'
s.version = '9.1.0'
s.version = '9.1.1'
s.summary = 'Magic IOS SDK'

s.description = <<-DESC
Expand Down
3 changes: 2 additions & 1 deletion Sources/MagicSDK/Core/Relayer/URLBuilder.swift
Original file line number Diff line number Diff line change
Expand Up @@ -63,7 +63,7 @@ public struct URLBuilder {
enum CodingKeys: String, CodingKey {
case apiKey = "API_KEY"
case ethNetwork = "ETH_NETWORK"
case bundleId, host, sdk
case bundleId, host, sdk, locale
}

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

try container.encode(apiKey, forKey: .apiKey)
try container.encode(URLBuilder.host, forKey: .host)
try container.encode(locale, forKey: .locale)


if let node = customNode {
Expand Down