We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 8c33cba commit 4381b66Copy full SHA for 4381b66
certy.go
@@ -187,6 +187,10 @@ var issuings = make(map[string]bool)
187
188
// issueLetsEncryptCert is a function for issuing letsencrypt certificate
189
func (m *Manager) issueLetsEncryptCert(email, domain, location string) {
190
+ if m == nil {
191
+ log.Println("Manager is nil")
192
+ return
193
+ }
194
195
// check location is exists or not if not create it
196
if _, err := os.Stat(location); os.IsNotExist(err) {
0 commit comments