forgot a contact page woops haha
All checks were successful
🧪 ✨ Unit Tests Workflow / 🔍 🐹 Go Tests (push) Successful in 5m7s
All checks were successful
🧪 ✨ Unit Tests Workflow / 🔍 🐹 Go Tests (push) Successful in 5m7s
This commit is contained in:
@@ -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 {
|
||||
|
Reference in New Issue
Block a user