Skip to content

Commit

Permalink
exclude website from room listing
Browse files Browse the repository at this point in the history
  • Loading branch information
jvyden committed May 23, 2024
1 parent c1565c7 commit f279431
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/app/pages/room-listing/room-listing.component.ts
Original file line number Diff line number Diff line change
Expand Up @@ -55,7 +55,7 @@ export class RoomListingComponent {
getGameVersions(): number[] {
return Object.values(GameVersion)
// @ts-ignore
.filter(key => isNaN(Number(GameVersion[key])))
.filter(key => isNaN(Number(GameVersion[key])) && key != 5)
.map(k => Number(k));
}

Expand Down

0 comments on commit f279431

Please sign in to comment.