diff --git a/app/javascript/mastodon/components/status_quoted.tsx b/app/javascript/mastodon/components/status_quoted.tsx index 36bd618df..d3d8b58c3 100644 --- a/app/javascript/mastodon/components/status_quoted.tsx +++ b/app/javascript/mastodon/components/status_quoted.tsx @@ -89,7 +89,7 @@ export const QuotedStatus: React.FC<{ ); useEffect(() => { - if (!status) { + if (!status && quotedStatusId) { dispatch(fetchStatus(quotedStatusId)); } }, [status, quotedStatusId, dispatch]);