Skip to content

Commit

Permalink
[atlona] Fix PROPERTY_VERSION not displaying correct value on UHD mod…
Browse files Browse the repository at this point in the history
…els (openhab#10279)

Signed-off-by: Michael Lobstein <michael.lobstein@gmail.com>
  • Loading branch information
mlobstein authored and computergeek1507 committed Jul 13, 2021
1 parent 9b959ad commit 54bf44b
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -1118,7 +1118,7 @@ public void responseReceived(String response) {
}

m = versionHdPattern.matcher(response);
if (m.matches()) {
if (!capabilities.isUHDModel() && m.matches()) {
handleVersionResponse(m, response);
return;
}
Expand Down

0 comments on commit 54bf44b

Please sign in to comment.