changed direct cast to integer to numerical value

This commit is contained in:
1 Man Projects 2017-07-17 15:19:04 +02:00 committed by GitHub
parent 56c0384044
commit 3e5d590f1e
1 changed files with 1 additions and 1 deletions

View File

@ -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;
} }
/** /**