Skip to content

Commit 13917d8

Browse files
committed
fix: metabar reading count
Signed-off-by: Innei <[email protected]>
1 parent 3a7e297 commit 13917d8

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/components/modules/shared/MetaBar.tsx

+1-1
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@ export const CurrentReadingCountingMetaBarItem: FC<{
1212

1313
const count = useCurrentRoomCount(roomCtx?.roomName || '')
1414

15-
if (!roomCtx || !count) return null
15+
if (!roomCtx || count <= 1) return null
1616

1717
return (
1818
<>

0 commit comments

Comments
 (0)