Browse Source

七牛云

master
huangjiajun 3 weeks ago
parent
commit
7405083615
1 changed files with 1 additions and 2 deletions
  1. +1
    -2
      app/hdl/hdl_qiniuyun.go

+ 1
- 2
app/hdl/hdl_qiniuyun.go View File

@@ -104,8 +104,7 @@ func getFileNameURL(c *gin.Context, filename string) string {


protocol := NewSysCfgDb.SysCfgGetWithDb("file_bucket_scheme") protocol := NewSysCfgDb.SysCfgGetWithDb("file_bucket_scheme")
domain := NewSysCfgDb.SysCfgGetWithDb("file_bucket_host") domain := NewSysCfgDb.SysCfgGetWithDb("file_bucket_host")
imgformat := NewSysCfgDb.SysCfgGetWithDb("file_avatar_thumbnail")
if protocol != "" && domain != "" && imgformat != "" {
if protocol != "" && domain != "" {
return protocol + "://" + domain + "/" + filename return protocol + "://" + domain + "/" + filename
} }
return filename return filename


Loading…
Cancel
Save