Fix ASF accidentally dismissing profile notifications

This commit is contained in:
JustArchi
2016-05-30 23:25:50 +02:00
parent 2d91a1ed26
commit 73af6b369a

View File

@@ -688,7 +688,9 @@ namespace ArchiSteamFarm {
}
private async Task<bool?> 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) {