about summary refs log tree commit diff stats
path: root/src/storage/video_database/downloader.rs
diff options
context:
space:
mode:
Diffstat (limited to 'src/storage/video_database/downloader.rs')
-rw-r--r--src/storage/video_database/downloader.rs8
1 files changed, 4 insertions, 4 deletions
diff --git a/src/storage/video_database/downloader.rs b/src/storage/video_database/downloader.rs
index c04ab8d..a7f6cad 100644
--- a/src/storage/video_database/downloader.rs
+++ b/src/storage/video_database/downloader.rs
@@ -43,7 +43,7 @@ pub async fn get_next_uncached_video(app: &App) -> Result<Option<Video>> {
         let base = result?;
 
         let thumbnail_url = if let Some(url) = &base.thumbnail_url {
-            Some(Url::parse(&url)?)
+            Some(Url::parse(&url).expect("Parsing this as url should always work"))
         } else {
             None
         };
@@ -72,7 +72,7 @@ pub async fn get_next_uncached_video(app: &App) -> Result<Option<Video>> {
             status_change,
             thumbnail_url,
             title: base.title.clone(),
-            url: Url::parse(&base.url)?,
+            url: Url::parse(&base.url).expect("Parsing this as url should always work"),
         };
 
         Ok(Some(video))
@@ -100,7 +100,7 @@ pub async fn get_next_video_watchable(app: &App) -> Result<Option<Video>> {
         let base = result?;
 
         let thumbnail_url = if let Some(url) = &base.thumbnail_url {
-            Some(Url::parse(&url)?)
+            Some(Url::parse(&url).expect("Parsing this as url should always work"))
         } else {
             None
         };
@@ -129,7 +129,7 @@ pub async fn get_next_video_watchable(app: &App) -> Result<Option<Video>> {
             status_change,
             thumbnail_url,
             title: base.title.clone(),
-            url: Url::parse(&base.url)?,
+            url: Url::parse(&base.url).expect("Parsing this as url should always work"),
         };
 
         Ok(Some(video))