Skip to content

Commit

Permalink
fix
Browse files Browse the repository at this point in the history
  • Loading branch information
Alexander Amezhenko committed Jun 11, 2024
1 parent 93023bf commit 8b1b8f2
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions schedule.go
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@ func (s Schedule) GetToOfficeText(now time.Time) (string, string) {
prefix := "*Рейсы в офис*\n\n"
//suffix := "\nСубботний рейс в " + s.SaturdayRouteToOffice.String()
//suffix := "\nВ выходные дни трансфера нет"
suffix := "\nСр праздничные дни - трансфера нет"
suffix := "\n12.06 (Ср) праздничный день - трансфера нет"
//suffix := "\nНовогодние каникулы до 8го января - трансфера нет"

timeAgnosticRoute := prefix + s.WorkDayRouteToOffice.String() + suffix
Expand All @@ -42,7 +42,7 @@ func (s Schedule) GetFromOfficeText(now time.Time) (string, string) {
prefix := "*Рейсы из офиса*\n\n"
//suffix := "\nСубботний дежурный в " + s.SaturdayRouteFromOffice.String()
//suffix := "\nВ выходные дни трансфера нет"
suffix := "\nСр праздничные дни - трансфера нет"
suffix := "\n12.06 (Ср) праздничный день - трансфера нет"
//suffix := "\nНовогодние каникулы до 8го января - трансфера нет"

timeAgnosticRoute := prefix + s.WorkDayRouteFromOffice.String() + suffix
Expand Down

0 comments on commit 8b1b8f2

Please sign in to comment.