diff --git a/src/renderer/components/ft-community-post/ft-community-post.js b/src/renderer/components/ft-community-post/ft-community-post.js index 3b832938bd892..8c7e2f718de3e 100644 --- a/src/renderer/components/ft-community-post/ft-community-post.js +++ b/src/renderer/components/ft-community-post/ft-community-post.js @@ -111,7 +111,8 @@ export default defineComponent({ return Number.parseInt(b.width) - Number.parseInt(a.width) }) - return imageArrayCopy.at(0)?.url ?? '' + // Remove cropping directives when applicable + return imageArrayCopy.at(0)?.url?.replace(/-c-fcrop64=.*/i, '') ?? '' } } })