Update StringExtensions.cs

This commit is contained in:
Ene
2021-10-08 20:20:50 +00:00
parent db7cf3d757
commit d348347762

View File

@@ -1,4 +1,4 @@
using Newtonsoft.Json; using Newtonsoft.Json;
using System; using System;
using System.Collections.Generic; using System.Collections.Generic;
using System.IO; using System.IO;
@@ -50,7 +50,7 @@ namespace NadekoBot.Extensions
} }
else else
{ {
return string.Concat(str.Take(maxLength - 3)) + "..."; return string.Concat(str.Take(maxLength - 1)) + "";
} }
} }