From 19146616dc137c14a40124509226c2b68deb491e Mon Sep 17 00:00:00 2001 From: Simon Date: Wed, 16 Jul 2025 18:50:33 +0000 Subject: [PATCH] bugfixes again --- src/providers/pornhub.rs | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/providers/pornhub.rs b/src/providers/pornhub.rs index b3f3ffd..947e342 100644 --- a/src/providers/pornhub.rs +++ b/src/providers/pornhub.rs @@ -186,7 +186,7 @@ impl PornhubProvider { continue; } let mut title = video_segment.split("\" title=\"").collect::>()[1] - .split("") + .split("\"") .collect::>()[0] .to_string(); // html decode @@ -209,7 +209,7 @@ impl PornhubProvider { id, title, url.to_string(), - "perverzija".to_string(), + "pornhub".to_string(), thumb, duration, );