mirror of
https://codeberg.org/forgejo/forgejo.git
synced 2024-11-10 04:05:42 +01:00
Fix panic when migrating a repo from GitHub with issues (#25246)
Fix #25245. Regression of #23946.
This commit is contained in:
parent
020ab3d4c8
commit
6348823eab
1 changed files with 1 additions and 1 deletions
|
@ -487,7 +487,7 @@ func (g *GithubDownloaderV3) GetIssues(page, perPage int) ([]*base.Issue, bool,
|
||||||
Updated: issue.GetUpdatedAt().Time,
|
Updated: issue.GetUpdatedAt().Time,
|
||||||
Labels: labels,
|
Labels: labels,
|
||||||
Reactions: reactions,
|
Reactions: reactions,
|
||||||
Closed: &issue.ClosedAt.Time,
|
Closed: issue.ClosedAt.GetTime(),
|
||||||
IsLocked: issue.GetLocked(),
|
IsLocked: issue.GetLocked(),
|
||||||
Assignees: assignees,
|
Assignees: assignees,
|
||||||
ForeignIndex: int64(*issue.Number),
|
ForeignIndex: int64(*issue.Number),
|
||||||
|
|
Loading…
Reference in a new issue