Skip to content

Commit 4e28840

Browse files
committed
Sort team member discord IDs
1 parent 471cf0b commit 4e28840

File tree

1 file changed

+2
-1
lines changed

1 file changed

+2
-1
lines changed

src/static_api.rs

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -209,7 +209,8 @@ impl<'a> Generator<'a> {
209209
let mut github_teams = team.github_teams(self.data)?;
210210
github_teams.sort();
211211

212-
let member_discord_ids = team.discord_ids(self.data)?;
212+
let mut member_discord_ids = team.discord_ids(self.data)?;
213+
member_discord_ids.sort();
213214

214215
let team_data = v1::Team {
215216
name: team.name().into(),

0 commit comments

Comments
 (0)