From 0bf831ee5494fd709da6043b6e37c4c8550a16c8 Mon Sep 17 00:00:00 2001 From: m3philis Date: Thu, 19 Jan 2023 02:56:25 +0100 Subject: [PATCH] add line to replace = with : for meta-tags --- imagecrawler.go | 1 + 1 file changed, 1 insertion(+) diff --git a/imagecrawler.go b/imagecrawler.go index 3fa3651..0963cce 100755 --- a/imagecrawler.go +++ b/imagecrawler.go @@ -50,6 +50,7 @@ func main() { // edit tags array to met API requirement tags = strings.Replace(tags, ",", "+", -1) + tags = strings.Replace(tags, "=", ":", -1) tags = strings.TrimSuffix(tags, "\n") for picHits > 0 {