Skip to content
This repository has been archived by the owner on Jan 10, 2024. It is now read-only.

Commit

Permalink
Whitespace fix
Browse files Browse the repository at this point in the history
  • Loading branch information
CommanderStorm authored Sep 20, 2023
1 parent cc79c76 commit e06f80b
Showing 1 changed file with 13 additions and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -434,7 +434,19 @@ class CreateEventActivity : ActivityForAccessingTumOnline<CreateEventResponse>(R
// event ends after n times
if (repeatHelper.isRepeatingNTimes()) {
for (i in 1 until repeatHelper.times) {
events.add(CalendarItem("", "", "", baseEvent.title, baseEvent.description, baseEvent.dtstart.plusWeeks(i), baseEvent.dtend.plusWeeks(i), "", false))
events.add(
CalendarItem(
"",
"",
"",
baseEvent.title,
baseEvent.description,
baseEvent.dtstart.plusWeeks(i),
baseEvent.dtend.plusWeeks(i),
"",
false
)
)
}
// event ends after "last" date
} else {
Expand Down

0 comments on commit e06f80b

Please sign in to comment.