Skip to content

Commit

Permalink
fix(behance): fix image url
Browse files Browse the repository at this point in the history
  • Loading branch information
TonyRL committed Dec 19, 2024
1 parent 40cc40b commit 47c665f
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion lib/routes/behance/user.ts
Original file line number Diff line number Diff line change
Expand Up @@ -78,7 +78,7 @@ async function handler(ctx) {
title: item.name,
link: item.url,
author: item.owners.map((owner) => owner.displayName).join(', '),
image: item.covers.size_808.url.replace('/808/', '/source/'),
image: item.covers.size_202.url.replace('/202/', '/source/'),
pubDate: item.publishedOn ? parseDate(item.publishedOn, 'X') : undefined,
category: item.fields?.map((field) => field.label.toLowerCase()),
projectId: item.id,
Expand Down

0 comments on commit 47c665f

Please sign in to comment.