Skip to content
This repository was archived by the owner on Jun 21, 2023. It is now read-only.

Commit 089d6c7

Browse files
Marking Apps private
1 parent 507125e commit 089d6c7

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

src/GitHub.App/Services/PullRequestService.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -116,7 +116,7 @@ public async Task<Page<PullRequestListItemModel>> ReadPullRequests(
116116
Conclusion = run.Conclusion.FromGraphQl(),
117117
Status = run.Status.FromGraphQl()
118118
}).ToList(),
119-
ApplicationName = suite.App != null ? suite.App.Name : string.Empty
119+
ApplicationName = suite.App != null ? suite.App.Name : "Private App"
120120
}).ToList(),
121121
Statuses = commit.Commit.Status
122122
.Select(context =>

src/GitHub.InlineReviews/Services/PullRequestSessionService.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -804,7 +804,7 @@ async Task<LastCommitAdapter> GetPullRequestLastCommitAdapter(HostAddress addres
804804
EndLine = annotation.Location.End.Line,
805805
}).ToList()
806806
}).ToList(),
807-
ApplicationName = suite.App != null ? suite.App.Name : string.Empty
807+
ApplicationName = suite.App != null ? suite.App.Name : "Private App"
808808
}).ToList(),
809809
Statuses = commit.Commit.Status
810810
.Select(context =>

0 commit comments

Comments
 (0)