cardigann: strdump escape non breaking space

This commit is contained in:
kaso17 2017-02-06 19:27:43 +01:00
parent 34e14a2a99
commit 831e26846e
1 changed files with 1 additions and 1 deletions

View File

@ -826,7 +826,7 @@ namespace Jackett.Indexers
break;
case "strdump":
// for debugging
var DebugData = Data.Replace("\r", "\\r").Replace("\n", "\\n");
var DebugData = Data.Replace("\r", "\\r").Replace("\n", "\\n").Replace("\xA0", "\\xA0");
logger.Info(string.Format("CardigannIndexer ({0}): strdump: {1}", ID, DebugData));
break;
default: