Skip to content

Commit

Permalink
fix: add eol in dav command and use success const as return code
Browse files Browse the repository at this point in the history
  • Loading branch information
GreyXor committed Oct 19, 2024
1 parent 603890e commit b6ebc97
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion apps/dav/lib/Command/FixCalendarSyncCommand.php
Original file line number Diff line number Diff line change
Expand Up @@ -54,7 +54,8 @@ public function execute(InputInterface $input, OutputInterface $output): int {
});
$progress->finish();
}
return 0;
$output->writeln('');
return self::SUCCESS;
}

private function fixUserCalendars(IUser $user, ?ProgressBar $progress = null): void {
Expand Down

0 comments on commit b6ebc97

Please sign in to comment.