Merge pull request #12038 from nextcloud/assemblystream_size

Implement the size of an assembly stream
This commit is contained in:
Morris Jobke 2018-10-26 17:02:16 +02:00 committed by GitHub
commit 31c3814b0a
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,
];
}
/**