1
Fork 0
mirror of https://gitlab.com/Kwoth/nadekobot.git synced 2024-10-02 20:13:13 +00:00

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.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)) + "…";
}
}