mirror of
https://github.com/nextcloud/server.git
synced 2026-04-23 15:21:00 -04:00
Rename since/until in verbose message
Signed-off-by: GitHub <noreply@github.com>
This commit is contained in:
parent
acf0b4ce34
commit
d7a73ffdf1
1 changed files with 2 additions and 2 deletions
|
|
@ -276,13 +276,13 @@ class RestoreAllFiles extends Base {
|
|||
|
||||
// Check left timestamp boundary
|
||||
if ($since !== null && $trashItem->getDeletedTime() <= $since) {
|
||||
$output->writeln("Skipping <info>" . $trashItem->getName() . "</info> because it was deleted before the restore-from timestamp", OutputInterface::VERBOSITY_VERBOSE);
|
||||
$output->writeln("Skipping <info>" . $trashItem->getName() . "</info> because it was deleted before the 'since' timestamp", OutputInterface::VERBOSITY_VERBOSE);
|
||||
continue;
|
||||
}
|
||||
|
||||
// Check right timestamp boundary
|
||||
if ($until !== null && $trashItem->getDeletedTime() >= $until) {
|
||||
$output->writeln("Skipping <info>" . $trashItem->getName() . "</info> because it was deleted after the restore-to timestamp", OutputInterface::VERBOSITY_VERBOSE);
|
||||
$output->writeln("Skipping <info>" . $trashItem->getName() . "</info> because it was deleted after the 'until' timestamp", OutputInterface::VERBOSITY_VERBOSE);
|
||||
continue;
|
||||
}
|
||||
|
||||
|
|
|
|||
Loading…
Reference in a new issue