Merge pull request #12111 from nextcloud/backport/12038/stable14

[14] Implement the size of an assembly stream
This commit is contained in:
Morris Jobke 2018-10-29 17:21:59 +01:00 committed by GitHub
commit 55c48283b5
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 3 additions and 1 deletions

View File

@ -170,7 +170,9 @@ class AssemblyStream implements \Icewind\Streams\File {
* @return array
*/
public function stream_stat() {
return [];
return [
'size' => $this->size,
];
}
/**