chore: Bump Rust version to 1.86 (#28021)
Closes #ISSUE Release Notes: - N/A
This commit is contained in:
parent
7492ec3f67
commit
c6e2d20a02
17 changed files with 24 additions and 23 deletions
|
@ -103,7 +103,7 @@ impl OpenRequest {
|
|||
let mut parts = request_path.split('/');
|
||||
if parts.next() == Some("channel") {
|
||||
if let Some(slug) = parts.next() {
|
||||
if let Some(id_str) = slug.split('-').last() {
|
||||
if let Some(id_str) = slug.split('-').next_back() {
|
||||
if let Ok(channel_id) = id_str.parse::<u64>() {
|
||||
let Some(next) = parts.next() else {
|
||||
self.join_channel = Some(channel_id);
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue