Explorar el Código

Fix to timberline string coverter and newlines

Kenric Nugteren hace 1 año
padre
commit
af0c3aed05
Se han modificado 1 ficheros con 1 adiciones y 0 borrados
  1. 1 0
      InABox.Poster.Timberline/TimberlineConverters.cs

+ 1 - 0
InABox.Poster.Timberline/TimberlineConverters.cs

@@ -30,6 +30,7 @@ namespace InABox.Poster.Timberline
             {
                 str = str[..MaxLength];
             }
+            str = str.ReplaceLineEndings("");
             return str;
         }
     }