mirror of
https://github.com/lifegpc/msg-tool.git
synced 2026-07-08 01:31:53 +08:00
fix bug
This commit is contained in:
@@ -112,7 +112,7 @@ impl INode for CommandNode {
|
|||||||
} else {
|
} else {
|
||||||
s.push_str(", ");
|
s.push_str(", ");
|
||||||
}
|
}
|
||||||
if arg.contains(" ") || arg.contains(",") {
|
if arg.contains(" ") || arg.contains(",") || arg.contains("=") {
|
||||||
s.push_str(&format!("\"{}\"", arg));
|
s.push_str(&format!("\"{}\"", arg));
|
||||||
} else {
|
} else {
|
||||||
s.push_str(arg);
|
s.push_str(arg);
|
||||||
|
|||||||
Reference in New Issue
Block a user