Skip to content

Commit

Permalink
Updated HomeAutio.Mqtt.Core
Browse files Browse the repository at this point in the history
  • Loading branch information
i8beef committed Dec 30, 2018
1 parent fbcb5c5 commit 34cb096
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -32,7 +32,7 @@
<PackageReference Include="I8Beef.CodeAnalysis.RuleSet" Version="1.0.15">
<PrivateAssets>all</PrivateAssets>
</PackageReference>
<PackageReference Include="HomeAutio.Mqtt.Core" Version="3.0.0.43" />
<PackageReference Include="HomeAutio.Mqtt.Core" Version="3.0.0.45" />
<PackageReference Include="I8Beef.UniFi.Video" Version="1.1.0.5" />
<PackageReference Include="Microsoft.Extensions.Configuration.Json" Version="2.1.1" />
<PackageReference Include="Microsoft.Extensions.Hosting" Version="2.1.1" />
Expand Down
2 changes: 1 addition & 1 deletion src/HomeAutio.Mqtt.UnifiVideo/UniFiVideoMqttService.cs
Original file line number Diff line number Diff line change
Expand Up @@ -90,7 +90,7 @@ await GetInitialStatusAsync(cancellationToken)
/// </summary>
/// <param name="sender">Event sender.</param>
/// <param name="e">Event args.</param>
protected override async void Mqtt_MqttMsgPublishReceived(object sender, MqttApplicationMessageReceivedEventArgs e)
protected override void Mqtt_MqttMsgPublishReceived(object sender, MqttApplicationMessageReceivedEventArgs e)
{
var message = Encoding.UTF8.GetString(e.ApplicationMessage.Payload);
_log.LogInformation("MQTT message received for topic " + e.ApplicationMessage.Topic + ": " + message);
Expand Down

0 comments on commit 34cb096

Please sign in to comment.