X-Git-Url: https://git.saurik.com/cycript.git/blobdiff_plain/975cde38d8631f5e80bb54b3fbd87ce7d4aa2766..0881deb5306e45b62eb0b2d244bc5d6d73b8c0a4:/Console.cpp diff --git a/Console.cpp b/Console.cpp index d41f6ef..80c9dbd 100644 --- a/Console.cpp +++ b/Console.cpp @@ -161,7 +161,10 @@ static void Output(CYUTF8String json, FILE *fout, bool expand = false) { if (data == NULL || fout == NULL) return; - if (!expand || data[0] != '"' && data[0] != '\'') + if (!expand || + data[0] != '@' && data[0] != '"' && data[0] != '\'' || + data[0] == '@' && data[1] != '"' && data[1] != '\'' + ) fputs(data, fout); else for (size_t i(0); i != size; ++i) if (data[i] != '\\')