changed direct cast to integer to numerical value
This commit is contained in:
parent
56c0384044
commit
3e5d590f1e
|
@ -193,7 +193,7 @@ class FileInfo implements \OCP\Files\FileInfo, \ArrayAccess {
|
||||||
*/
|
*/
|
||||||
public function getSize() {
|
public function getSize() {
|
||||||
$this->updateEntryfromSubMounts();
|
$this->updateEntryfromSubMounts();
|
||||||
return isset($this->data['size']) ? $this->data['size'] : 0;
|
return isset($this->data['size']) ? 0 + $this->data['size'] : 0;
|
||||||
}
|
}
|
||||||
|
|
||||||
/**
|
/**
|
||||||
|
|
Loading…
Reference in New Issue