We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 890f467 commit 89a40baCopy full SHA for 89a40ba
server/src/modules/discord/commands.rs
@@ -173,7 +173,7 @@ pub fn sessions() -> String {
173
let mut upcoming = Vec::new();
174
175
// Categorize sessions
176
- for (_id, session) in &sessions {
+ for session in sessions.values() {
177
let start = session.start_time.as_ref().map_or(0, |t| t.seconds);
178
let end = session.end_time.as_ref().map_or(0, |t| t.seconds);
179
let location =
0 commit comments