Ver código fonte

Fix to timberline string coverter and newlines

Kenric Nugteren 1 ano atrás
pai
commit
af0c3aed05
1 arquivos alterados com 1 adições e 0 exclusões
  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;
         }
     }