mirror of
https://github.com/nextcloud/server.git
synced 2026-06-12 18:21:40 -04:00
Rename since/until in verbose message
Signed-off-by: GitHub <noreply@github.com>
This commit is contained in:
parent
9630de5674
commit
f42481f893
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