Skip to content

Commit

Permalink
bugfix
Browse files Browse the repository at this point in the history
  • Loading branch information
zoic21 authored Aug 10, 2024
1 parent 4eb7407 commit 1a5ddfe
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion core/class/philipsHue.class.php
Original file line number Diff line number Diff line change
Expand Up @@ -128,7 +128,7 @@ public static function createUser($_bridge_number = 1) {
}

public static function serviceSuffix($_count){
return ($_count == < 2) ? '' : ' '.$_count;
return ($_count < 2) ? '' : ' '.$_count;
}

public static function syncBridge($_bridge_number = 1) {
Expand Down

0 comments on commit 1a5ddfe

Please sign in to comment.