From 73af6b369adfd46bf8082482ed71049f889b17ad Mon Sep 17 00:00:00 2001 From: JustArchi Date: Mon, 30 May 2016 23:25:50 +0200 Subject: [PATCH] Fix ASF accidentally dismissing profile notifications --- ArchiSteamFarm/ArchiWebHandler.cs | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/ArchiSteamFarm/ArchiWebHandler.cs b/ArchiSteamFarm/ArchiWebHandler.cs index dd7a75eb5..cc570a121 100644 --- a/ArchiSteamFarm/ArchiWebHandler.cs +++ b/ArchiSteamFarm/ArchiWebHandler.cs @@ -688,7 +688,9 @@ namespace ArchiSteamFarm { } private async Task IsLoggedIn() { - string request = SteamCommunityURL + "/my/profile"; + // It would make sense to use /my/profile here, but it dismisses notifications related to profile comments + // So instead, we'll use some less intrusive link, such as /my/videos + string request = SteamCommunityURL + "/my/videos"; Uri uri = await WebBrowser.UrlHeadToUriRetry(request).ConfigureAwait(false); if (uri == null) {