diff options
author | zeripath <art27@cantab.net> | 2022-06-09 04:50:05 +0200 |
---|---|---|
committer | GitHub <noreply@github.com> | 2022-06-09 04:50:05 +0200 |
commit | 7948cb3149ab64484a8d4c6644f53f9f39accbef (patch) | |
tree | 57d26b3cd16456876ded4305ce0cb0ee375b9fb9 /go.mod | |
parent | [skip ci] Updated translations via Crowdin (diff) | |
download | forgejo-7948cb3149ab64484a8d4c6644f53f9f39accbef.tar.xz forgejo-7948cb3149ab64484a8d4c6644f53f9f39accbef.zip |
Prevent NPE whilst migrating if there is a team request review (#19855)
A pr.Reviewer may be nil when migrating from Gitea if this is a team
request review.
We do not migrate teams therefore we cannot map these requests, but we can
migrate user requests.
Signed-off-by: Andrew Thornton <art27@cantab.net>
Diffstat (limited to 'go.mod')
-rw-r--r-- | go.mod | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -43,7 +43,7 @@ require ( github.com/gogs/cron v0.0.0-20171120032916-9f6c956d3e14 github.com/gogs/go-gogs-client v0.0.0-20210131175652-1d7215cd8d85 github.com/golang-jwt/jwt/v4 v4.4.1 - github.com/google/go-github/v39 v39.2.0 + github.com/google/go-github/v45 v45.0.0 github.com/google/pprof v0.0.0-20220509035851-59ca7ad80af3 github.com/google/uuid v1.3.0 github.com/gorilla/feeds v1.1.1 |