Skip to content

Commit

Permalink
Strip server version hash to 8 bytes
Browse files Browse the repository at this point in the history
  • Loading branch information
Tripperful committed Sep 25, 2024
1 parent e898742 commit 00c38ba
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion packages/client/src/components/OnlineServers/index.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -175,7 +175,7 @@ export const OnlineServers: FC = () => {
>
{serverInfo.name} ({serverInfo.ip}:{serverInfo.port}, version
hash: 
{serverInfo.versionHash})
{serverInfo.versionHash?.substring(0, 8) ?? 'unknown'})
</Link>
</span>
))}
Expand Down

0 comments on commit 00c38ba

Please sign in to comment.