Skip to content

Commit 62c1404

Browse files
authored
Merge pull request #482 from dot-mike/fix/metadata-update-total
Correct updated games count in metadata update message
2 parents 7661776 + e5dc4e2 commit 62c1404

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/renderer/components/pages/HomePage.tsx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -471,7 +471,7 @@ export function HomePage(props: HomePageProps) {
471471
</div>
472472
{ props.main.metadataUpdate.ready && props.main.metadataUpdate.total > 0 && (
473473
<div className='update-metadata-last'>
474-
{formatString(strings.updatedGamesReady, (props.main.metadataUpdate.total + 1).toString())}
474+
{formatString(strings.updatedGamesReady, (props.main.metadataUpdate.total).toString())}
475475
</div>
476476
)}
477477
<div className='update-metadata-last'>

0 commit comments

Comments
 (0)