forgot a contact page woops haha
All checks were successful
🧪 ✨ Unit Tests Workflow / 🔍 🐹 Go Tests (push) Successful in 5m7s

This commit is contained in:
2025-05-22 20:18:20 -04:00
parent b0d4f3f890
commit f00f9b0946

View File

@@ -53,11 +53,11 @@ func (g *Generator) GenerateUrl(file string, params []string, format Format) (st
var url string
var err error
if config.GetConfig().Generator.PlainUrl {
url, _ = g.generatePlainUrl(file)
url, err = g.generatePlainUrl(file)
} else if g.encryptionKey != nil {
url, err = g.generateBaseAesEncUrl([]byte(file))
} else {
url, _ = g.generateBase64Url([]byte(file))
url, err = g.generateBase64Url([]byte(file))
}
if err != nil {