Skip to content

Releases: sara-nl/nc-trashbin-app

v0.0.3_test

21 Nov 09:48
Compare
Choose a tag to compare
v0.0.3_test Pre-release
Pre-release

Fix minor bug when a sub node is restored.

Full Changelog: v0.0.2_test...v0.0.3_test

v0.0.2_test

19 Nov 12:02
Compare
Choose a tag to compare
v0.0.2_test Pre-release
Pre-release

Existing Trashbin bug mitigated (no need anymore to modify apps/files_trashbin/lib/Trash/TrashItem.php).

Full Changelog: v0.0.1_test...v0.0.2_test

v0.0.1_test

18 Nov 16:02
Compare
Choose a tag to compare
v0.0.1_test Pre-release
Pre-release

Full Changelog: https://github.com/sara-nl/nc-trashbin-app/commits/v0.0.1_test

Needs a change in file apps/files_trashbin/lib/Trash/TrashItem.php:
Line 36:

	public function getTrashPath(): string {
		// return $this->trashPath;
		return ltrim($this->trashPath, '/');
	}

	public function isRootItem(): bool {
		// return substr_count($this->getTrashPath(), '/') === 1;
		return substr_count($this->getTrashPath(), '/') === 0;
	}