We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
=
1 parent 708de59 commit bef1e14Copy full SHA for bef1e14
src/main/java/top/xzynb/chatimage/utils/CQCode.java
@@ -90,6 +90,9 @@ public static List<CQCode> parseCQCodes(String message) {
90
StringBuilder argPart2 = new StringBuilder();
91
for (int j = 1; j < argParts.length; j++) {
92
argPart2.append(argParts[j]);
93
+ if (j != argParts.length - 1){
94
+ argPart2.append("=");
95
+ }
96
}
97
args.put(argParts[0], argPart2.toString());
98
0 commit comments