Closed cowsay closed 1 year ago
Fixes #13
It might be better if you'd love to update the dependencies in go.mod (I guess that's why to Go build has failed). Or I can do that if it is inconvenient for you.
And I'd suggest just combine the App()
call with AppIfConfigured()
:
if app := AppIfConfigured(...); app == nil {
// ...
} else {
// ...
}
Since it is returning the App
if it is configured.
Oof. Seems like the latest Caddy does not support Go 1.20 am I right? Or something else happened.
I see. Updating transitive dependencies breaks caddy. Bummer. People love breaking changes without new major version.
Huzzah.
Also encountered this error so i changed to nil check instead of bool