Skip to content

Commit

Permalink
fx
Browse files Browse the repository at this point in the history
  • Loading branch information
SnO2WMaN committed Dec 8, 2023
1 parent c17b6af commit 873c4ff
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -60,7 +60,7 @@ type SoundcloudRegistrationRequest implements Node & RegistrationRequest {
"""
SoundCloud側のオリジナルのサムネイル画像のURL
**無い場合もある場合に注意.**
**無い場合もあることに注意.**
"""
originalThumbnailUrl: String

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,7 @@ export const resolverSoundcloudRegistrationRequest = ({
originalUrl: ({ sourceId }) => `https://www.soundcloud.com/watch?v=${sourceId}`,
embedUrl: ({ sourceId }) => `https://www.soundcloud.com/embed/${sourceId}`,

thumbnailUrl: ({ thumbnailUrl }, { scale }) => (thumbnailUrl ? ImagesService.proxyThis(thumbnailUrl, scale) : null),
thumbnailUrl: ({ thumbnailUrl }, { scale }) => (thumbnailUrl ? ImagesService.proxyThis(thumbnailUrl, scale) : ""), // TODO: 早急にない場合をどうするか決める
originalThumbnailUrl: ({ thumbnailUrl }) => thumbnailUrl ?? null,

taggings: ({ dbId: requestId }) => {
Expand Down

0 comments on commit 873c4ff

Please sign in to comment.