Browse Source

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 years ago
parent
commit
61062fa428
1 changed files with 1 additions and 0 deletions
  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);
 }
 
 /////////////////////////////////////////////////////////////////////////////////////////