v0.0.582
All checks were successful
Build Docker and Deploy / Run goext test-suite (push) Successful in 2m33s

This commit is contained in:
2025-06-25 10:51:38 +02:00
parent 506d276962
commit 23a3235c7e
2 changed files with 3 additions and 3 deletions

View File

@@ -18,7 +18,7 @@ func DecodeBase64Any(data string) ([]byte, error) {
data = strings.ReplaceAll(data, "_", "/") // base64_url --> base64_std
data = strings.ReplaceAll(data, "-", "+") // base64_url --> base64_std
data = strings.ReplaceAll(data, "=", " ") // no padding
data = strings.ReplaceAll(data, "=", "") // no padding
return base64.RawStdEncoding.DecodeString(data)
}