Skip to content

Commit ec79b38

Browse files
feat: request creator in data provider
1 parent 3401044 commit ec79b38

File tree

2 files changed

+2
-1
lines changed

2 files changed

+2
-1
lines changed

src/api/provider/GraphConverter.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -80,7 +80,7 @@ export class GraphConverter {
8080
source.thumb = source.thumb ?? { id: null, url: thumbUrl };
8181

8282
source.cluster = source.sfm_cluster ?? { id: null, url: null };
83-
source.creator = { id: null, username: null };
83+
source.creator = source.creator ?? { id: null, username: null };
8484
source.owner = source.organization ?? { id: null };
8585
source.mesh = source.mesh ?? { id: null, url: null };
8686

src/api/provider/GraphQueryCreator.ts

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -26,6 +26,7 @@ export class GraphQueryCreator {
2626
'computed_altitude',
2727
'computed_compass_angle',
2828
'computed_rotation',
29+
'creator',
2930
'exif_orientation',
3031
'height',
3132
'merge_cc',

0 commit comments

Comments
 (0)