missav bugfix
This commit is contained in:
@@ -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));
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user