missav bugfix

This commit is contained in:
Simon
2025-08-20 14:00:34 +00:00
parent 746147c7c0
commit c135f60894

View File

@@ -271,7 +271,7 @@ impl MissavProvider {
let tag = actress_snippet.split("<").collect::<Vec<&str>>()[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::<Vec<&str>>()[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::<Vec<&str>>()[0].trim()
.to_string();
if !tag.is_empty(){
tags.push(format!("@genre:{}", tag));
tags.push(format!("@maker:{}", tag));
}
}
}