diff options
Diffstat (limited to 'src/videos/mod.rs')
-rw-r--r-- | src/videos/mod.rs | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/videos/mod.rs b/src/videos/mod.rs index b51e469..3876bd1 100644 --- a/src/videos/mod.rs +++ b/src/videos/mod.rs @@ -24,7 +24,7 @@ pub async fn query(app: &App, limit: Option<usize>, search_query: Option<String> let all_videos = get_videos(app, VideoStatus::ALL, None).await?; // turn one video to a color display, to pre-warm the hash shrinking cache - if let Some(val) = all_videos.get(0) { + if let Some(val) = all_videos.first() { val.to_color_display(app).await?; } |