Skip to content

Commit

Permalink
[arcam] Fixed channel value overwriting issue
Browse files Browse the repository at this point in the history
Signed-off-by: Joep Admiraal <joep@groovytunes.nl>
  • Loading branch information
joepadmiraal committed Sep 8, 2022
1 parent 84ab2e9 commit 9be46db
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -31,7 +31,7 @@ public class ArcamCommandFinder {
public byte[] getCommandDataFromCode(ArcamCommandCode code, List<ArcamCommand> list) {
for (ArcamCommand command : list) {
if (command.code.equals(code)) {
return command.data;
return command.data.clone();
}
}

Expand Down

0 comments on commit 9be46db

Please sign in to comment.