Ensure the boost button shows a numeric value (#36805)

This commit is contained in:
Echo 2025-11-10 16:10:24 +01:00 committed by GitHub
parent 9addad8ce5
commit 9a42d00c12
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194

View File

@ -112,6 +112,18 @@ const BoostOrQuoteMenu: FC<ReblogButtonProps> = ({ status, counters }) => {
const statusId = status.get('id') as string;
const wasBoosted = !!status.get('reblogged');
let count: number | undefined;
if (counters) {
count = 0;
// Ensure count is a valid integer.
if (Number.isInteger(status.get('reblogs_count'))) {
count += status.get('reblogs_count') as number;
}
if (Number.isInteger(status.get('quotes_count'))) {
count += status.get('quotes_count') as number;
}
}
const showLoginPrompt = useCallback(() => {
dispatch(
openModal({
@ -187,12 +199,7 @@ const BoostOrQuoteMenu: FC<ReblogButtonProps> = ({ status, counters }) => {
)}
icon='retweet'
iconComponent={boostIcon}
counter={
counters
? (status.get('reblogs_count') as number) +
(status.get('quotes_count') as number)
: undefined
}
counter={count}
active={isReblogged}
/>
</Dropdown>