Removed unnecessary line referencing LFS struct (#4113)

https://github.com/go-gitea/gitea/pull/4035#issuecomment-394286204

@ohwgiles points out that the config section should, in fact, still be in accordance with the "server" struct, which contains the "LFS" struct. I should just remove the line
```
sec = Cfg.Section("LFS")
```
This commit is contained in:
Inon S 2018-06-04 21:07:42 +03:00 committed by Lauris BH
parent d62bc3362b
commit 1bcabb8b1e
1 changed files with 0 additions and 1 deletions

View File

@ -829,7 +829,6 @@ func NewContext() {
LFS.ContentPath = filepath.Join(AppWorkPath, LFS.ContentPath)
}
sec = Cfg.Section("LFS")
LFS.HTTPAuthExpiry = sec.Key("LFS_HTTP_AUTH_EXPIRY").MustDuration(20 * time.Minute)
if LFS.StartServer {