Skip to content

Commit

Permalink
Pass correct clientId to Unsubscribe interceptor (#1631)
Browse files Browse the repository at this point in the history
  • Loading branch information
ghord committed Dec 23, 2022
1 parent 795139d commit abe7bbd
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -483,7 +483,7 @@ async Task<InterceptingSubscriptionEventArgs> InterceptSubscribe(MqttTopicFilter

async Task<InterceptingUnsubscriptionEventArgs> InterceptUnsubscribe(string topicFilter, MqttSubscription mqttSubscription, CancellationToken cancellationToken)
{
var clientUnsubscribingTopicEventArgs = new InterceptingUnsubscriptionEventArgs(cancellationToken, topicFilter, _session.Items, topicFilter)
var clientUnsubscribingTopicEventArgs = new InterceptingUnsubscriptionEventArgs(cancellationToken, _session.Id, _session.Items, topicFilter)
{
Response =
{
Expand Down

0 comments on commit abe7bbd

Please sign in to comment.