mirror of
https://github.com/gethomepage/homepage.git
synced 2025-07-31 14:33:48 -04:00
Fix: Handle Romm v3.10.0 filesize breaking change (#5565)
This commit is contained in:
parent
d581d70d1a
commit
bbb013e0ce
@ -43,7 +43,10 @@ export default function Component({ service }) {
|
||||
<Block label="romm.saves" value={t("common.number", { value: response.SAVES })} />
|
||||
<Block label="romm.states" value={t("common.number", { value: response.STATES })} />
|
||||
<Block label="romm.screenshots" value={t("common.number", { value: response.SCREENSHOTS })} />
|
||||
<Block label="romm.totalfilesize" value={t("common.bytes", { value: response.FILESIZE })} />
|
||||
<Block
|
||||
label="romm.totalfilesize"
|
||||
value={t("common.bytes", { value: response.FILESIZE ?? response.TOTAL_FILESIZE_BYTES })}
|
||||
/>
|
||||
</Container>
|
||||
);
|
||||
}
|
||||
|
Loading…
x
Reference in New Issue
Block a user