Skip to content

Commit

Permalink
fix: 修复不能正确启动B服的问题 (#33)
Browse files Browse the repository at this point in the history
  • Loading branch information
MistEO authored Oct 10, 2023
2 parents 2e88d91 + 83c4859 commit e693d37
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion source/cli/main.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -301,7 +301,7 @@ bool proc_argv(int argc, char** argv, bool& debug, std::string& adb, std::string
debug = confing.get("debug", false);
adb = confing["adb"].as_string();
adb_address = confing["adb_address"].as_string();
client_type = confing.get("client", client_type);
client_type = confing.get("client_type", client_type);

int index = 1;
for (auto& task : confing["tasks"].as_array()) {
Expand Down

0 comments on commit e693d37

Please sign in to comment.