Skip to content

Commit

Permalink
tell people to use ssl not https
Browse files Browse the repository at this point in the history
  • Loading branch information
goatchurchprime committed Sep 16, 2024
1 parent a05b568 commit 4dd8ef0
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion addons/mqtt/mqtt.gd
Original file line number Diff line number Diff line change
Expand Up @@ -264,7 +264,7 @@ func connect_to_broker(brokerurl):
assert (brokerconnectmode == BCM_NOCONNECTION)
var brokermatch = regexbrokerurl.search(brokerurl)
if brokermatch == null:
print("ERROR: unrecognized brokerurl pattern:", brokerurl)
print("ERROR: unrecognized brokerurl pattern: ", brokerurl, " must be tcp,ssh,ws, or wss://")
return cleanupsockets(false)
var brokercomponents = brokermatch.strings
var brokerprotocol = brokercomponents[1]
Expand Down

0 comments on commit 4dd8ef0

Please sign in to comment.