Fix restore without topic failure (#18387)

Co-authored-by: zeripath <art27@cantab.net>
forgejo
Lunny Xiao 2 years ago committed by GitHub
parent 8053b60b4f
commit a717265e47
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

@ -97,6 +97,9 @@ func (r *RepositoryRestorer) GetTopics() ([]string, error) {
bs, err := os.ReadFile(p)
if err != nil {
if os.IsNotExist(err) {
return nil, nil
}
return nil, err
}

Loading…
Cancel
Save