From fa1cb9ae33112f9bb49cccd6891812d46638132d Mon Sep 17 00:00:00 2001 From: lifei6671 Date: Wed, 29 Aug 2018 13:48:36 +0800 Subject: [PATCH] =?UTF-8?q?fix:=E4=BF=AE=E5=A4=8D=E4=B8=8B=E8=BD=BD?= =?UTF-8?q?=E9=99=84=E4=BB=B6=E7=9A=84BUG?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- controllers/BlogController.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/controllers/BlogController.go b/controllers/BlogController.go index 298d0354..da0d6a3a 100644 --- a/controllers/BlogController.go +++ b/controllers/BlogController.go @@ -618,7 +618,7 @@ func (c *BlogController) Download() { } blogReadSession := fmt.Sprintf("blog:read:%d",blogId) //如果没有启动匿名访问,或者设置了访问密码 - if (c.Member != nil && !c.EnableAnonymous) || ( blog.BlogStatus == "password" && password != blog.Password && c.CruSession.Get(blogReadSession) == nil) { + if (c.Member == nil && !c.EnableAnonymous) || ( blog.BlogStatus == "password" && password != blog.Password && c.CruSession.Get(blogReadSession) == nil) { c.ShowErrorPage(403, "没有下载权限") }