Преглед изворни кода

Remove escaped access tokens from logs too

Fixes #135. This is probably not a proper solution, but at least takes
care of it.
Vincent Lang пре 9 година
родитељ
комит
61062fa428
1 измењених фајлова са 1 додато и 0 уклоњено
  1. 1 0
      src/main.cpp

+ 1 - 0
src/main.cpp

@@ -83,6 +83,7 @@ static void elidePattern(QString& msg, const QString& substring, int chars)
 static void processLog(QString& msg)
 {
   elidePattern(msg, "X-Plex-Token=", 20);
+  elidePattern(msg, "X-Plex-Token%3D", 20);
 }
 
 /////////////////////////////////////////////////////////////////////////////////////////