Skip to content

Commit 73af6b3

Browse files
committed
Fix ASF accidentally dismissing profile notifications
1 parent 2d91a1e commit 73af6b3

File tree

1 file changed

+3
-1
lines changed

1 file changed

+3
-1
lines changed

ArchiSteamFarm/ArchiWebHandler.cs

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -688,7 +688,9 @@ internal async Task<bool> MarkInventory() {
688688
}
689689

690690
private async Task<bool?> IsLoggedIn() {
691-
string request = SteamCommunityURL + "/my/profile";
691+
// It would make sense to use /my/profile here, but it dismisses notifications related to profile comments
692+
// So instead, we'll use some less intrusive link, such as /my/videos
693+
string request = SteamCommunityURL + "/my/videos";
692694

693695
Uri uri = await WebBrowser.UrlHeadToUriRetry(request).ConfigureAwait(false);
694696
if (uri == null) {

0 commit comments

Comments
 (0)