Skip to content

Commit

Permalink
Fix info matches against info field not working.
Browse files Browse the repository at this point in the history
  • Loading branch information
PJB3005 committed Nov 18, 2023
1 parent efcf87f commit b4227b3
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion SS14.ServerHub.Shared/CommunityMatcher.cs
Original file line number Diff line number Diff line change
Expand Up @@ -108,7 +108,7 @@ public static async Task MatchCommunitiesInfo(
var match = CheckStatusMatch(dbContext, statusJson);
if (infoJson != null)
{
match = match.Concat(CheckInfoMatch(dbContext, statusJson));
match = match.Concat(CheckInfoMatch(dbContext, infoJson));
}

var result = await match
Expand Down

0 comments on commit b4227b3

Please sign in to comment.