Skip to content
Next Next commit
fix: fix missing dot in unique name when restoring from trash
Signed-off-by: Robin Appelman <[email protected]>
  • Loading branch information
icewind1991 committed Dec 12, 2024
commit 771939e6cdcdebf762b4f409cb35aa56fd637f9a
2 changes: 1 addition & 1 deletion lib/Trash/TrashBackend.php
Original file line number Diff line number Diff line change
Expand Up @@ -159,7 +159,7 @@ public function restoreItem(ITrashItem $item) {
$target .= ' (' . $i . ')';

if (isset($info['extension'])) {
$target .= $info['extension'];
$target .= '.' . $info['extension'];
}

return $target;
Expand Down