diff --git a/infrastructure/sysStorage/sysStorage.go b/infrastructure/sysStorage/sysStorage.go index 9369955..9cc619b 100644 --- a/infrastructure/sysStorage/sysStorage.go +++ b/infrastructure/sysStorage/sysStorage.go @@ -29,7 +29,7 @@ func NewLocalStorage(basePath, fileUrl string) *LocalStorage { if err := os.MkdirAll(basePath, os.ModePerm); err != nil { panic("Failed to create storage directory: " + err.Error()) } - fileUrl = "http://" + fileUrl + fileUrl = "https://" + fileUrl return &LocalStorage{basePath: basePath, FileUrl: fileUrl} }