diff options
author | Lunny Xiao <xiaolunwen@gmail.com> | 2018-12-13 23:55:43 +0800 |
---|---|---|
committer | techknowlogick <hello@techknowlogick.com> | 2018-12-13 10:55:43 -0500 |
commit | b3b7598ec6846d53d7deb2c84781b06e22c93044 (patch) | |
tree | 53c85943b23867b20e2b31742fbe06fcda088ccd /models/update.go | |
parent | 49ea6e0deb7ecef327b0c2f41920f75c6aaf80d3 (diff) | |
download | gitea-b3b7598ec6846d53d7deb2c84781b06e22c93044.tar.gz gitea-b3b7598ec6846d53d7deb2c84781b06e22c93044.zip |
Improve performance of dashboard (#4977)
Diffstat (limited to 'models/update.go')
-rw-r--r-- | models/update.go | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/models/update.go b/models/update.go index 0f71cd1e70..9cd4d0d977 100644 --- a/models/update.go +++ b/models/update.go @@ -51,7 +51,7 @@ func ListToPushCommits(l *list.List) *PushCommits { } commits = append(commits, CommitToPushCommit(commit)) } - return &PushCommits{l.Len(), commits, "", nil} + return &PushCommits{l.Len(), commits, "", make(map[string]string), make(map[string]*User)} } // PushUpdateOptions defines the push update options |