You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
The function public function free_space($path = '/') calls $this->basicOperation('free_space', $path); but basicOperation doesn't implement the operation "free_space" and hence always returns null.
In consequence, no free disk space is calculated and e.g. the trashbin retention will keep files forever.
The text was updated successfully, but these errors were encountered:
/**
* abstraction layer for basic filesystem functions: wrapper for \OC\Files\Storage\Storage
*
* This method takes requests for basic filesystem functions (e.g. reading & writing
* files), processes hooks and proxies, sanitises paths, and finally passes them on to
* \OC\Files\Storage\Storage for delegation to a storage backend for execution
*/
private function basicOperation($operation, $path, $hooks = [], $extraParam = null) {
At least for local storage free_space is correctly forwarded. I'm closing your report. Feel free to create a proper report using the issue template and include for which storage free_space is not implemented.
server/lib/private/Files/View.php
Line 1117 in 9585c4f
The function
public function free_space($path = '/')
calls$this->basicOperation('free_space', $path);
butbasicOperation
doesn't implement the operation "free_space" and hence always returns null.In consequence, no free disk space is calculated and e.g. the trashbin retention will keep files forever.
The text was updated successfully, but these errors were encountered: