We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 2b19fe0 commit 9761eb9Copy full SHA for 9761eb9
lib/private/Files/Storage/Common.php
@@ -106,7 +106,7 @@ public function __construct($parameters) {
106
protected function remove($path) {
107
if ($this->is_dir($path)) {
108
return $this->rmdir($path);
109
- } elseif ($this->is_file($path)) {
+ } elseif ($this->is_file($path) || $this->is_link($path)) {
110
return $this->unlink($path);
111
} else {
112
return false;
0 commit comments