Merge pull request #12111 from nextcloud/backport/12038/stable14
[14] Implement the size of an assembly stream
This commit is contained in:
commit
55c48283b5
|
@ -170,7 +170,9 @@ class AssemblyStream implements \Icewind\Streams\File {
|
||||||
* @return array
|
* @return array
|
||||||
*/
|
*/
|
||||||
public function stream_stat() {
|
public function stream_stat() {
|
||||||
return [];
|
return [
|
||||||
|
'size' => $this->size,
|
||||||
|
];
|
||||||
}
|
}
|
||||||
|
|
||||||
/**
|
/**
|
||||||
|
|
Loading…
Reference in New Issue