From f6b1e44a00e033c5e40c197ac6f3bb295568dc95 Mon Sep 17 00:00:00 2001 From: Mino Date: Mon, 13 Apr 2020 22:47:02 +0900 Subject: [PATCH] add comments --- Dalamud.Bootstrap/SqexArg/ArgumentBuilder.cs | 6 +++++- 1 file changed, 5 insertions(+), 1 deletion(-) diff --git a/Dalamud.Bootstrap/SqexArg/ArgumentBuilder.cs b/Dalamud.Bootstrap/SqexArg/ArgumentBuilder.cs index 4e48b3b30..51f3c36fd 100644 --- a/Dalamud.Bootstrap/SqexArg/ArgumentBuilder.cs +++ b/Dalamud.Bootstrap/SqexArg/ArgumentBuilder.cs @@ -59,7 +59,11 @@ namespace Dalamud.Bootstrap.SqexArg var escapedKey = EscapeValue(key); var escapedvalue = EscapeValue(value); - buffer.Append($" /{escapedKey} ={escapedvalue}"); // TODO: this is broken + // TODO: (from chat) + // This line, the = in your version has a space before it + // If you're sending the arguments in plaintext, game doesn't like the space there + // (But I think it needs to be there in crypted args) + buffer.Append($" /{escapedKey} ={escapedvalue}"); // TODO: thanks SE } private static string EscapeValue(string value)