We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 471cf0b commit 4e28840Copy full SHA for 4e28840
src/static_api.rs
@@ -209,7 +209,8 @@ impl<'a> Generator<'a> {
209
let mut github_teams = team.github_teams(self.data)?;
210
github_teams.sort();
211
212
- let member_discord_ids = team.discord_ids(self.data)?;
+ let mut member_discord_ids = team.discord_ids(self.data)?;
213
+ member_discord_ids.sort();
214
215
let team_data = v1::Team {
216
name: team.name().into(),
0 commit comments