diff options
author | Côme Chilliet <come.chilliet@nextcloud.com> | 2022-03-24 11:04:09 +0100 |
---|---|---|
committer | Côme Chilliet <come.chilliet@nextcloud.com> | 2022-03-24 11:04:09 +0100 |
commit | ecbcfca98aff39857e3fac622a667b7696cb0087 (patch) | |
tree | 0c230717aa539a6d7541bb5a87eb6f92e43e3dbe /apps/files_trashbin | |
parent | 53c731d8f975ec8b0e577f7e348873a8833a1b38 (diff) | |
download | nextcloud-server-ecbcfca98aff39857e3fac622a667b7696cb0087.tar.gz nextcloud-server-ecbcfca98aff39857e3fac622a667b7696cb0087.zip |
Improve wording of output for trashbin migrator
Signed-off-by: Côme Chilliet <come.chilliet@nextcloud.com>
Diffstat (limited to 'apps/files_trashbin')
-rw-r--r-- | apps/files_trashbin/lib/UserMigration/TrashbinMigrator.php | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/apps/files_trashbin/lib/UserMigration/TrashbinMigrator.php b/apps/files_trashbin/lib/UserMigration/TrashbinMigrator.php index fad8103e796..578d08291a6 100644 --- a/apps/files_trashbin/lib/UserMigration/TrashbinMigrator.php +++ b/apps/files_trashbin/lib/UserMigration/TrashbinMigrator.php @@ -67,7 +67,7 @@ class TrashbinMigrator implements IMigrator { try { $trashbinFolder = $this->root->get('/'.$uid.'/files_trashbin'); - $output->writeln("Exporting trashbin…"); + $output->writeln("Exporting trashbin files…"); if ($exportDestination->copyFolder($trashbinFolder, static::PATH_FILES_FOLDER) === false) { throw new UserMigrationException("Could not export trashbin."); } |