This commit is contained in:
Kwoth
2021-10-09 19:49:26 +02:00
2 changed files with 37 additions and 20 deletions

View File

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