Skip to content

Commit

Permalink
#109: Fix error related to unimplemented selector #serverNameIndicat…
Browse files Browse the repository at this point in the history
…ion:.

The selector is now performed to avoid being detected in this specific instance.
  • Loading branch information
kurtkilpela committed Aug 14, 2024
1 parent c20deab commit 3b5a92b
Showing 1 changed file with 4 additions and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -10,6 +10,9 @@ socketStreamToUrlDirectly: url
(#(https wss) includes: url scheme)
ifTrue:
[stream
serverNameIndication: url host;
"Avoid warning about unimplemented selector when Zodiac is not loaded."
perform: #serverNameIndication:
with: url host.
stream
connect].
^ stream

0 comments on commit 3b5a92b

Please sign in to comment.