auto-sync: 2026-05-22 13:11:31

This commit is contained in:
cfdaily
2026-05-22 13:11:31 +08:00
parent a59358f773
commit ecd00f11e4
+1 -1
View File
@@ -79,7 +79,7 @@ export default function App() {
return executing + '活跃';
}
if (key === 'mail') {
const unread = ((useStore.getState().sseEvents || []) as any[]).filter((n: any) => !n.read).length;
const unread = useStore.getState().mailUnread || 0;
return unread > 0 ? String(unread) : '';
}
return '';