We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent e6e6a19 commit 0da152cCopy full SHA for 0da152c
Source/WetPicsRebirth/Commands/UserCommands/Posting/PostManuallyCommandHandler.cs
@@ -128,7 +128,14 @@ await _postedMediaRepository.Add(
128
{
129
await _telegramBotClient.SendTextMessageAsync(
130
message.Chat.Id,
131
- "Не удалось отправить пост: " + e.Message + e.StackTrace + e.InnerException?.Message + e.InnerException?.StackTrace,
+ "Не удалось отправить пост: "
132
+ + e.Message
133
+ + Environment.NewLine
134
+ + e.StackTrace
135
136
+ + e.InnerException?.Message
137
138
+ + e.InnerException?.StackTrace,
139
replyToMessageId: message.MessageId,
140
cancellationToken: cancellationToken);
141
}
0 commit comments