mirror of
https://github.com/ente-io/ente.git
synced 2025-08-08 07:28:26 +00:00
fix: stream size issues
This commit is contained in:
parent
d0a2502a39
commit
e0cbe47052
@ -388,6 +388,7 @@ class PreviewVideoStore {
|
||||
'type': 'hls_video',
|
||||
'width': width,
|
||||
'height': height,
|
||||
'size': objectSize,
|
||||
},
|
||||
encryptionKey,
|
||||
);
|
||||
@ -495,7 +496,7 @@ class PreviewVideoStore {
|
||||
|
||||
width = playlistData["width"];
|
||||
height = playlistData["height"];
|
||||
size = response.data["data"]["objectSize"];
|
||||
size = playlistData["size"];
|
||||
|
||||
if (objectKey != null) {
|
||||
unawaited(
|
||||
|
@ -32,7 +32,7 @@ class _PreviewPropertiesItemWidgetState
|
||||
@override
|
||||
void initState() {
|
||||
super.initState();
|
||||
_getSection();
|
||||
Future.microtask(() => _getSection());
|
||||
}
|
||||
|
||||
@override
|
||||
|
Loading…
x
Reference in New Issue
Block a user