Skip to content

Commit

Permalink
Merge pull request #32841 from nextcloud/backport-32059-stable24
Browse files Browse the repository at this point in the history
[stable24] Fix issue #31692 of occ files:scan
  • Loading branch information
blizzz committed Jun 13, 2022
2 parents a5b13da + 23777c9 commit 8188ad5
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion apps/files/lib/Command/Scan.php
Original file line number Diff line number Diff line change
Expand Up @@ -291,7 +291,7 @@ protected function showSummary($headers, $rows, OutputInterface $output) {
protected function formatExecTime() {
$secs = round($this->execTime);
# convert seconds into HH:MM:SS form
return sprintf('%02d:%02d:%02d', ($secs / 3600), ($secs / 60 % 60), $secs % 60);
return sprintf('%02d:%02d:%02d', (int)($secs / 3600), ((int)($secs / 60) % 60), $secs % 60);
}

protected function reconnectToDatabase(OutputInterface $output): Connection {
Expand Down

0 comments on commit 8188ad5

Please sign in to comment.