Skip to content

Commit

Permalink
fixed CM11 driver bug
Browse files Browse the repository at this point in the history
  • Loading branch information
genemars committed Dec 4, 2015
1 parent 8d2900a commit 7237ac1
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
4 changes: 2 additions & 2 deletions XTenLib/XTenLib.nuspec
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
<package xmlns="http://schemas.microsoft.com/packaging/2011/08/nuspec.xsd">
<metadata>
<id>XTenLib</id>
<version>1.0.6</version>
<version>1.0.7</version>
<title>XTenLib</title>
<authors>Generoso Martello</authors>
<owners>G-Labs</owners>
Expand All @@ -18,7 +18,7 @@ Features
- Automatically restabilish connection on error/disconnect
- Compatible with Mono</description>
<summary>X10 Home Automation library for .Net / Mono</summary>
<releaseNotes>Added missing Tamper event to RF Security decode.</releaseNotes>
<releaseNotes>Fixed CM11 driver bug.</releaseNotes>
<copyright>G-Labs</copyright>
<tags>x10 home automation cm11 cm15</tags>
<dependencies>
Expand Down
2 changes: 1 addition & 1 deletion XTenLib/XTenManager.cs
Original file line number Diff line number Diff line change
Expand Up @@ -852,7 +852,7 @@ private void SendMessage(byte[] message)

private void ReaderTask()
{
while (IsConnected)
while (x10interface != null && !disconnectRequested)
{
try
{
Expand Down

0 comments on commit 7237ac1

Please sign in to comment.