Skip to content

Commit

Permalink
fixed spacing error in url for hex converter with frequencies
Browse files Browse the repository at this point in the history
  • Loading branch information
SwindleA committed Oct 9, 2023
1 parent aed94c8 commit dac1be7
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -67,7 +67,7 @@ public void setColorHex(String hexValue) {
rgbledHelper.setColorHex(hexValue);
}

@Get("/setColorHex/{hexValue}, {frequency1}, {frequency2}, {frequency3}")
@Get("/setColorHex/{hexValue},{frequency1},{frequency2},{frequency3}")
public void setColorHex(String hexValue, int frequency1, int frequency2, int frequency3) {
int[] frequency = new int[] {frequency1, frequency2, frequency3};
rgbledHelper.setColorHex(hexValue, frequency);
Expand Down

0 comments on commit dac1be7

Please sign in to comment.