mirror of
https://github.com/nextcloud/server.git
synced 2026-06-14 19:20:35 -04:00
Merge pull request #26040 from nextcloud/backport/25916/stable20
[stable20] Remove trash items from other trash backends when deleting all
This commit is contained in:
commit
b306b88a41
1 changed files with 3 additions and 0 deletions
|
|
@ -50,6 +50,9 @@ class TrashRoot implements ICollection {
|
|||
|
||||
public function delete() {
|
||||
\OCA\Files_Trashbin\Trashbin::deleteAll();
|
||||
foreach ($this->trashManager->listTrashRoot($this->user) as $trashItem) {
|
||||
$this->trashManager->removeItem($trashItem);
|
||||
}
|
||||
}
|
||||
|
||||
public function getName(): string {
|
||||
|
|
|
|||
Loading…
Reference in a new issue