add line to replace = with : for meta-tags

This commit is contained in:
m3philis
2023-01-19 02:56:25 +01:00
parent b2fe0d449a
commit 0bf831ee54

View File

@@ -50,6 +50,7 @@ func main() {
// edit tags array to met API requirement // edit tags array to met API requirement
tags = strings.Replace(tags, ",", "+", -1) tags = strings.Replace(tags, ",", "+", -1)
tags = strings.Replace(tags, "=", ":", -1)
tags = strings.TrimSuffix(tags, "\n") tags = strings.TrimSuffix(tags, "\n")
for picHits > 0 { for picHits > 0 {