Files
hw-fbbot/content_functions.go
2020-01-15 15:36:20 +01:00

11 lines
267 B
Go

package main
import "strings"
func getImageURL(testStyleURL string) (string, error) {
genURL := strings.ReplaceAll(testStyleURL, `\3a `, `:`)
genURL = strings.ReplaceAll(genURL, `\3d `, `=`)
genURL = strings.ReplaceAll(genURL, `\26 `, `&`)
return genURL, nil
}