Skip to content

Commit

Permalink
[#66005] pw_fastboot: Fix OEM command parsing
Browse files Browse the repository at this point in the history
  • Loading branch information
lkedziora committed Sep 19, 2024
1 parent 04a065e commit 99ee228
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion pw_fastboot/fastboot_device.cc
Original file line number Diff line number Diff line change
Expand Up @@ -137,7 +137,7 @@ void Device::ExecuteCommands() {

std::vector<std::string> args;
std::string cmd_name;
if (stringutils::StartsWith(cmd_name, "oem ")) {
if (stringutils::StartsWith(command, "oem ")) {
args = {command};
cmd_name = FB_CMD_OEM;
} else {
Expand Down

0 comments on commit 99ee228

Please sign in to comment.