Skip to content

Commit 6b2d6b7

Browse files
Updates upgrade URLs (#275)
1 parent 4f135db commit 6b2d6b7

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

m365-developer-proxy/ProxyCommandHandler.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -77,7 +77,7 @@ public async Task<int> InvokeAsync(InvocationContext context) {
7777
var newReleaseInfo = await UpdateNotification.CheckForNewVersion();
7878
if (newReleaseInfo != null) {
7979
_logger.LogError($"New version {newReleaseInfo.Version} of the Graph Developer Proxy is available.");
80-
_logger.LogError($"See {newReleaseInfo.Url} for more information.");
80+
_logger.LogError($"See https://aka.ms/m365/proxy/upgrade for more information.");
8181
_logger.LogError(string.Empty);
8282
}
8383

m365-developer-proxy/UpdateNotification.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,7 @@ public ReleaseInfo() {
1818
}
1919

2020
internal static class UpdateNotification {
21-
private static readonly string releasesUrl = "https://api.github.com/repos/microsoft/m365-developer-proxy/releases";
21+
private static readonly string releasesUrl = "https://aka.ms/m365/proxy/releases";
2222

2323
/// <summary>
2424
/// Checks if a new version of the proxy is available.

0 commit comments

Comments
 (0)