Skip to content
Closed
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
6 changes: 5 additions & 1 deletion apps/files_trashbin/lib/Sabre/AbstractTrash.php
Original file line number Diff line number Diff line change
Expand Up @@ -55,7 +55,11 @@ public function getFileInfo(): FileInfo {
return $this->data;
}

public function getSize(): int {
/**
* Removal of return type is intentional as int is not large enough on 32 bit systems
* see https://github.com/nextcloud/server/issues/13160
*/
public function getSize() {
return $this->data->getSize();
}

Expand Down