mirror of
https://github.com/Flow-Launcher/Flow.Launcher.git
synced 2026-03-11 08:54:32 +00:00
Suppress Startup Update error Notifcation
This commit is contained in:
parent
5ae9ee46c0
commit
a42df2aacd
1 changed files with 4 additions and 3 deletions
|
|
@ -91,8 +91,9 @@ namespace Flow.Launcher.Core
|
||||||
catch (Exception e) when (e is HttpRequestException or WebException or SocketException || e.InnerException is TimeoutException)
|
catch (Exception e) when (e is HttpRequestException or WebException or SocketException || e.InnerException is TimeoutException)
|
||||||
{
|
{
|
||||||
Log.Exception($"|Updater.UpdateApp|Check your connection and proxy settings to github-cloud.s3.amazonaws.com.", e);
|
Log.Exception($"|Updater.UpdateApp|Check your connection and proxy settings to github-cloud.s3.amazonaws.com.", e);
|
||||||
api.ShowMsg(api.GetTranslation("update_flowlauncher_fail"),
|
if (!silentUpdate)
|
||||||
api.GetTranslation("update_flowlauncher_check_connection"));
|
api.ShowMsg(api.GetTranslation("update_flowlauncher_fail"),
|
||||||
|
api.GetTranslation("update_flowlauncher_check_connection"));
|
||||||
}
|
}
|
||||||
finally
|
finally
|
||||||
{
|
{
|
||||||
|
|
@ -124,7 +125,7 @@ namespace Flow.Launcher.Core
|
||||||
var releases = await System.Text.Json.JsonSerializer.DeserializeAsync<List<GithubRelease>>(jsonStream).ConfigureAwait(false);
|
var releases = await System.Text.Json.JsonSerializer.DeserializeAsync<List<GithubRelease>>(jsonStream).ConfigureAwait(false);
|
||||||
var latest = releases.Where(r => !r.Prerelease).OrderByDescending(r => r.PublishedAt).First();
|
var latest = releases.Where(r => !r.Prerelease).OrderByDescending(r => r.PublishedAt).First();
|
||||||
var latestUrl = latest.HtmlUrl.Replace("/tag/", "/download/");
|
var latestUrl = latest.HtmlUrl.Replace("/tag/", "/download/");
|
||||||
|
|
||||||
var client = new WebClient
|
var client = new WebClient
|
||||||
{
|
{
|
||||||
Proxy = Http.WebProxy
|
Proxy = Http.WebProxy
|
||||||
|
|
|
||||||
Loading…
Reference in a new issue