Skip to content

Commit 5255135

Browse files
committed
Fix mispelling
resolves eclipse-paho#123
1 parent e9f694b commit 5255135

File tree

2 files changed

+3
-3
lines changed

2 files changed

+3
-3
lines changed

client.go

+1-1
Original file line numberDiff line numberDiff line change
@@ -107,7 +107,7 @@ func NewClient(o *ClientOptions) Client {
107107
c.status = disconnected
108108
c.messageIds = messageIds{index: [65535]Token{}}
109109
c.msgRouter, c.stopRouter = newRouter()
110-
c.msgRouter.setDefaultHandler(c.options.DefaultPublishHander)
110+
c.msgRouter.setDefaultHandler(c.options.DefaultPublishHandler)
111111
if !c.options.AutoReconnect {
112112
c.options.MessageChannelDepth = 0
113113
}

options.go

+2-2
Original file line numberDiff line numberDiff line change
@@ -58,7 +58,7 @@ type ClientOptions struct {
5858
MaxReconnectInterval time.Duration
5959
AutoReconnect bool
6060
Store Store
61-
DefaultPublishHander MessageHandler
61+
DefaultPublishHandler MessageHandler
6262
OnConnect OnConnectHandler
6363
OnConnectionLost ConnectionLostHandler
6464
WriteTimeout time.Duration
@@ -235,7 +235,7 @@ func (o *ClientOptions) SetBinaryWill(topic string, payload []byte, qos byte, re
235235
// SetDefaultPublishHandler sets the MessageHandler that will be called when a message
236236
// is received that does not match any known subscriptions.
237237
func (o *ClientOptions) SetDefaultPublishHandler(defaultHandler MessageHandler) *ClientOptions {
238-
o.DefaultPublishHander = defaultHandler
238+
o.DefaultPublishHandler = defaultHandler
239239
return o
240240
}
241241

0 commit comments

Comments
 (0)