🐛 fix connMap not init

This commit is contained in:
微凉
2022-01-30 00:55:12 +08:00
parent f26ac57569
commit 6fd05d7d72
6 changed files with 6 additions and 5 deletions

View File

@ -26,7 +26,7 @@ import (
)
var client189Map map[string]*resty.Client
var infoMap = make(map[string]Rsa, 0)
var infoMap = make(map[string]Rsa)
func (driver Cloud189) getClient(account *model.Account) (*resty.Client, error) {
client, ok := client189Map[account.Name]

View File

@ -156,7 +156,7 @@ func getMd5(data []byte) []byte {
func init() {
base.RegisterDriver(&Cloud189{})
client189Map = make(map[string]*resty.Client, 0)
client189Map = make(map[string]*resty.Client)
}
func decodeURIComponent(str string) string {