Skip to content

Commit

Permalink
feat: add support for connection established feedback string
Browse files Browse the repository at this point in the history
  • Loading branch information
jtalborough committed Dec 30, 2024
1 parent 333efbf commit 8e9bd9d
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion PDT.LutronQuantum.EPI/LutronQuantum.cs
Original file line number Diff line number Diff line change
Expand Up @@ -157,7 +157,7 @@ void Communication_TextReceived(object sender, GenericCommMethodReceiveTextArgs
SubscribeAfterLogin = new CTimer(x => SubscribeToFeedback(), null, 5000);

}
else if (args.Text.Contains("Access Granted"))
else if (args.Text.Contains("Access Granted") || args.Text.Contains("connection established"))
{
if (SubscribeAfterLogin != null)
{
Expand Down

0 comments on commit 8e9bd9d

Please sign in to comment.