Skip to content

Commit

Permalink
feat: request creator in data provider
Browse files Browse the repository at this point in the history
  • Loading branch information
oscarlorentzon committed Nov 14, 2023
1 parent 3f738a4 commit 5c86f4f
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 1 deletion.
2 changes: 1 addition & 1 deletion src/api/provider/GraphConverter.ts
Original file line number Diff line number Diff line change
Expand Up @@ -159,7 +159,7 @@ export class GraphConverter {
source.thumb = source.thumb ?? { id: null, url: thumbUrl };

source.cluster = source.sfm_cluster ?? { id: null, url: null };
source.creator = { id: null, username: null };
source.creator = source.creator ?? { id: null, username: null };
source.owner = source.organization ?? { id: null };
source.mesh = source.mesh ?? { id: null, url: null };

Expand Down
1 change: 1 addition & 0 deletions src/api/provider/GraphQueryCreator.ts
Original file line number Diff line number Diff line change
Expand Up @@ -26,6 +26,7 @@ export class GraphQueryCreator {
'computed_altitude',
'computed_compass_angle',
'computed_rotation',
'creator',
'exif_orientation',
'height',
'merge_cc',
Expand Down

0 comments on commit 5c86f4f

Please sign in to comment.