Browse Source

Fix to timberline string coverter and newlines

Kenric Nugteren 1 year ago
parent
commit
af0c3aed05
1 changed files with 1 additions and 0 deletions
  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;
         }
     }