Skip to content

Commit

Permalink
Fix typo and delete useless list
Browse files Browse the repository at this point in the history
  • Loading branch information
wh0o7 committed Sep 9, 2023
1 parent cb8258d commit c413593
Showing 1 changed file with 2 additions and 3 deletions.
5 changes: 2 additions & 3 deletions StudentsTimetable/Services/ParseService.cs
Original file line number Diff line number Diff line change
Expand Up @@ -200,7 +200,7 @@ public async Task ParseDay()
}
}

_ = this._botService.SendAdminMessageAsync(new SendMessageArgs(0, $"There's been a schedule change with the groups:: {string.Join(',', groupUpdatedList)}"));
_ = this._botService.SendAdminMessageAsync(new SendMessageArgs(0, $"There's been a schedule change with the groups: {string.Join(',', groupUpdatedList)}"));
Timetable.Clear();
Timetable.Add(new Day
{
Expand All @@ -215,7 +215,6 @@ public async Task ParseDay()

_ = Task.Run(() =>
{
var tasks = new List<Task>();
foreach (var user in notificationUserList)
{
_ = this._distributionService.SendDayTimetable(user) ;
Expand Down Expand Up @@ -345,4 +344,4 @@ public async Task UpdateTimetableTick()

Console.WriteLine("End update tick");
}
}
}

0 comments on commit c413593

Please sign in to comment.