Skip to content

Commit 89a40ba

Browse files
committed
Fixing clippy errors
1 parent 890f467 commit 89a40ba

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

server/src/modules/discord/commands.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -173,7 +173,7 @@ pub fn sessions() -> String {
173173
let mut upcoming = Vec::new();
174174

175175
// Categorize sessions
176-
for (_id, session) in &sessions {
176+
for session in sessions.values() {
177177
let start = session.start_time.as_ref().map_or(0, |t| t.seconds);
178178
let end = session.end_time.as_ref().map_or(0, |t| t.seconds);
179179
let location =

0 commit comments

Comments
 (0)