about summary refs log tree commit diff stats
path: root/src/comments/mod.rs
diff options
context:
space:
mode:
Diffstat (limited to 'src/comments/mod.rs')
-rw-r--r--src/comments/mod.rs2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/comments/mod.rs b/src/comments/mod.rs
index aa4cc06..5fbc3fb 100644
--- a/src/comments/mod.rs
+++ b/src/comments/mod.rs
@@ -32,7 +32,7 @@ mod display;
 
 pub async fn get_comments(app: &App) -> Result<Comments> {
     let currently_playing_video: Video =
-        if let Some(video) = get_currently_playing_video(&app).await? {
+        if let Some(video) = get_currently_playing_video(app).await? {
             video
         } else {
             bail!("Could not find a currently playing video!");