Skip to content

Commit

Permalink
fix linkmode response encoding
Browse files Browse the repository at this point in the history
  • Loading branch information
llbartekll committed Jul 11, 2024
1 parent 96a1ae8 commit 73e39aa
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -129,7 +129,7 @@ final class LinkEnvelopesDispatcher {
}

private func serializeAndCreateUrl(peerUniversalLink: String, encodable: Encodable, envelopeType: Envelope.EnvelopeType, topic: String) throws -> URL {
let envelope = try serializer.serialize(topic: topic, encodable: encodable, envelopeType: envelopeType)
let envelope = try serializer.serialize(topic: topic, encodable: encodable, envelopeType: envelopeType, codingType: .base64UrlEncoded)

guard var components = URLComponents(string: peerUniversalLink) else { throw URLError(.badURL) }

Expand Down

0 comments on commit 73e39aa

Please sign in to comment.