Skip to content

Commit

Permalink
Small fix for missing return value.
Browse files Browse the repository at this point in the history
  • Loading branch information
TLeonardUK committed Mar 19, 2022
1 parent 32c7dc1 commit ec4dfa7
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion Source/MasterServer/src/routes/api/v1/servers.js
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,7 @@ var GOldestSupportedVersion = 2;
function IsServerFilter(ServerInfo)
{
if (ServerInfo['Version'] < GOldestSupportedVersion) {
return;
return true;
}

return IsFiltered(ServerInfo['Name']) ||
Expand Down

0 comments on commit ec4dfa7

Please sign in to comment.