Skip to content

Commit

Permalink
fix missing escape
Browse files Browse the repository at this point in the history
  • Loading branch information
elasticroentgen committed May 13, 2024
1 parent 5a64de5 commit 5f7d002
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion Program.cs
Original file line number Diff line number Diff line change
Expand Up @@ -107,7 +107,7 @@ static async Task HandleUpdateAsync(ITelegramBotClient botClient, Update update,
string[] msgSegments = messageText.Split(' ');
if (msgSegments.Length < 2)
{
await SendResponse("You need to supply a repository link with a branch.");
await SendResponse("You need to supply a repository link with a branch\\.");
Console.WriteLine("No repo link supplied");
return;

Expand Down

0 comments on commit 5f7d002

Please sign in to comment.