File tree Expand file tree Collapse file tree 2 files changed +2
-2
lines changed Expand file tree Collapse file tree 2 files changed +2
-2
lines changed Original file line number Diff line number Diff line change @@ -244,7 +244,7 @@ private extension Github.Metadata.Repository {
244
244
private extension Github . Metadata . Repository {
245
245
// Returns a normalized version of the URL. Adding a `.git` if not present.
246
246
var normalizedParentUrl : String ? {
247
- guard let url = parent. url else { return nil }
247
+ guard let url = parent? . url else { return nil }
248
248
guard !url. hasSuffix ( " .git " ) else { return url }
249
249
let normalizedUrl = url + " .git "
250
250
return normalizedUrl
Original file line number Diff line number Diff line change @@ -351,7 +351,7 @@ extension Github {
351
351
var isArchived : Bool
352
352
// periphery:ignore
353
353
var isFork : Bool
354
- var parent : Parent
354
+ var parent : Parent ?
355
355
var isInOrganization : Bool
356
356
var licenseInfo : LicenseInfo ?
357
357
var mergedPullRequests : IssueNodes
You can’t perform that action at this time.
0 commit comments