diff --git a/src/TgSharp.Core/Network/Exceptions/FloodException.cs b/src/TgSharp.Core/Network/Exceptions/FloodException.cs index e3e5319..098540f 100644 --- a/src/TgSharp.Core/Network/Exceptions/FloodException.cs +++ b/src/TgSharp.Core/Network/Exceptions/FloodException.cs @@ -7,7 +7,7 @@ namespace TgSharp.Core.Network.Exceptions public TimeSpan TimeToWait { get; private set; } internal FloodException(TimeSpan timeToWait) - : base($"Flood prevention. Telegram now requires your program to do requests again only after {timeToWait.TotalSeconds} seconds have passed ({nameof(TimeToWait)} property)." + + : base($"Flood prevention. Telegram now requires your program to do requests again only after {timeToWait.TotalSeconds} seconds have passed ({nameof(TimeToWait)} property), so if now it's {DateTime.Now}, wait until {(DateTime.Now+timeToWait)}" + " If you think the culprit of this problem may lie in TgSharp's implementation, open a Github issue please.") { TimeToWait = timeToWait;