We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 2d91a1e commit 73af6b3Copy full SHA for 73af6b3
ArchiSteamFarm/ArchiWebHandler.cs
@@ -688,7 +688,9 @@ internal async Task<bool> MarkInventory() {
688
}
689
690
private async Task<bool?> IsLoggedIn() {
691
- string request = SteamCommunityURL + "/my/profile";
+ // 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";
694
695
Uri uri = await WebBrowser.UrlHeadToUriRetry(request).ConfigureAwait(false);
696
if (uri == null) {
0 commit comments