Merge pull request #12112 from nextcloud/backport/12038/stable13

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

View File

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