Skip to content

Commit

Permalink
Fix api url
Browse files Browse the repository at this point in the history
  • Loading branch information
DominicSaladin committed Oct 19, 2023
1 parent b4abcba commit 618948b
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion speed-time/App.xaml.cs
Original file line number Diff line number Diff line change
Expand Up @@ -171,7 +171,7 @@ internal static async Task CheckForUpdate()
if (File.Exists(exeFile))
File.Delete(exeFile);

HttpRequestMessage requestMessage = new(HttpMethod.Get, $"https://apii.dsaladin.dev/v1/product/{ProductId}/versions?fromVersion={Assembly.GetExecutingAssembly().GetName().Version!}");
HttpRequestMessage requestMessage = new(HttpMethod.Get, $"https://api.dsaladin.dev/v1/product/{ProductId}/versions?fromVersion={Assembly.GetExecutingAssembly().GetName().Version!}");

HttpResponseMessage responseMessage;
try
Expand Down

0 comments on commit 618948b

Please sign in to comment.