typo fix
Build Mumble Web 2 / linux_build (push) Successful in 1m25s
Build Mumble Web 2 / windows_build (push) Successful in 2m41s
Build Mumble Web 2 / android_build (push) Successful in 5m57s

This commit is contained in:
2026-01-25 11:35:48 -07:00
parent 61eea0a858
commit b22bdff949
+1 -1
View File
@@ -145,7 +145,7 @@ impl ChannelsState {
let mut to_sort: Vec<(ChannelId, Option<ChannelId>, i32, String)> = Vec::new();
for (id, state) in self.channels.iter() {
// Hnadle channels with no parent (the root channel)
// Handle channels with no parent (the root channel)
let Some(parent_id) = state.parent else {
to_sort.push((*id, None, 0, state.name.clone()));
continue;