From c135f60894d650a6633e8ae99d29f3335100dc43 Mon Sep 17 00:00:00 2001 From: Simon Date: Wed, 20 Aug 2025 14:00:34 +0000 Subject: [PATCH] missav bugfix --- src/providers/missav.rs | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/src/providers/missav.rs b/src/providers/missav.rs index 118ebdb..944bf0d 100644 --- a/src/providers/missav.rs +++ b/src/providers/missav.rs @@ -271,7 +271,7 @@ impl MissavProvider { let tag = actress_snippet.split("<").collect::>()[0].trim() .to_string(); if !tag.is_empty(){ - tags.push(format!("@genre:{}", tag)); + tags.push(format!("@actress:{}", tag)); } } } @@ -281,7 +281,7 @@ impl MissavProvider { let tag = actor_snippet.split("<").collect::>()[0].trim() .to_string(); if !tag.is_empty(){ - tags.push(format!("@genre:{}", tag)); + tags.push(format!("@actor:{}", tag)); } } } @@ -293,7 +293,7 @@ impl MissavProvider { let tag = maker_snippet.split("<").collect::>()[0].trim() .to_string(); if !tag.is_empty(){ - tags.push(format!("@genre:{}", tag)); + tags.push(format!("@maker:{}", tag)); } } }