⬆️: rust 1.90

This commit is contained in:
VC
2025-09-26 15:33:47 +02:00
parent 402fcffc75
commit 7bd0843cf6
3 changed files with 516 additions and 562 deletions

1074
Cargo.lock generated

File diff suppressed because it is too large Load Diff

View File

@@ -1,6 +1,6 @@
[package] [package]
name = "oolatoocs" name = "oolatoocs"
version = "4.3.0" version = "4.3.1"
edition = "2021" edition = "2021"
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html # See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html

View File

@@ -200,7 +200,7 @@ pub async fn generate_media_records(
.collect(); .collect();
let video_media_attach: Vec<_> = media_attach let video_media_attach: Vec<_> = media_attach
.iter() .iter()
.filter(|x| (x.r#type == AttachmentType::Video || x.r#type == AttachmentType::Gifv)) .filter(|x| x.r#type == AttachmentType::Video || x.r#type == AttachmentType::Gifv)
.cloned() .cloned()
.collect(); .collect();