We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent d7257bc commit 6cbec27Copy full SHA for 6cbec27
libs/web-media/src/lib/data-info/file-info.ts
@@ -237,6 +237,7 @@ export class FileInfo extends DataInfo {
237
object.size,
238
file,
239
);
240
+ result.online = object.online ?? false;
241
result.attributes = object.attributes;
242
result.url = object.url;
243
result.hash = object.hash;
@@ -280,6 +281,7 @@ export class FileInfo extends DataInfo {
280
281
type: this.type,
282
url: this.url,
283
attributes: this.attributes,
284
+ online: this.online,
285
content: '',
286
hash: this.hash,
287
};
@@ -336,6 +338,7 @@ export interface FileInfoSerialized {
336
338
size: number;
337
339
type: string;
340
url?: string;
341
+ online?: boolean;
342
attributes?: any;
343
content?: string;
344
hash?: string;
0 commit comments