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)); } } }