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

Commit 791b2ca

Browse files
committed
Point users to support email address
1 parent 31b416a commit 791b2ca

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
@@ -321,7 +321,7 @@ public IObservable<string> ExtractFile(
321321
}
322322
catch (NotFoundException ex)
323323
{
324-
throw new NotFoundException($"The Pull Request file failed to load. Please check your network connection and click refresh to try again.", ex);
324+
throw new NotFoundException($"The Pull Request file failed to load. Please check your network connection and click refresh to try again. If this issue persists, please let us know at [email protected]", ex);
325325
}
326326
}
327327

src/GitHub.InlineReviews/Services/PullRequestSessionService.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -132,7 +132,7 @@ public async Task<string> GetPullRequestMergeBase(ILocalRepositoryModel reposito
132132
}
133133
catch (NotFoundException ex)
134134
{
135-
throw new NotFoundException("The Pull Request failed to load. Please check your network connection and click refresh to try again.", ex);
135+
throw new NotFoundException("The Pull Request failed to load. Please check your network connection and click refresh to try again. If this issue persists, please let us know at [email protected]", ex);
136136
}
137137

138138
return mergeBaseCache[key] = mergeBase;

0 commit comments

Comments
 (0)