Skip to content

Commit 9a4643f

Browse files
committed
fix(web-media): FileInfo.fromAny() sets online attribute to false
1 parent 8e98176 commit 9a4643f

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

libs/web-media/src/lib/data-info/file-info.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -237,7 +237,7 @@ export class FileInfo extends DataInfo {
237237
object.size,
238238
file,
239239
);
240-
result.online = object.online ?? false;
240+
result.online = object.online ?? true;
241241
result.attributes = object.attributes;
242242
result.url = object.url;
243243
result.hash = object.hash;

0 commit comments

Comments
 (0)