I too have this issue and verified it using Fiddler. For now I have implemented a custom rule in Fiddler that strips off “(null)” and was able to download game updates and complete installs
I'm also having this issue on Debian 10; could you share your Fiddler rule so that I can work around this too? I've not been able to download anything for months :(
@jimj316 - my solution is inelegant but - I added it to the end of the OnBeforeRequest method under Customize Rules
if (oSession.PathAndQuery.EndsWith("(null)")) {
oSession.PathAndQuery=oSession.PathAndQuery.Substring(0,oSession.PathAndQuery.Length-6);
}
I do have my Fiddler scripting language set to c#
@kisak-valve - can we get someone other than "ghost" assigned please.
Hello, is anyone still experiencing this issue on an up to date system?
I completely rebuilt that entire computer from a clean operating system install and have not had the issue since
Thanks for retesting @CodeAndLoathing. Closing as fixed some time ago.
Moving this out of https://github.com/ValveSoftware/steam-for-linux/issues/6340 since it is not related to the kernel issue for me either (verified):
I have similar symptoms, but apparently for a different reason. When trying to download, I'm getting a similar error message:
As you can see, the URL has a "(null)" appended. Running a tcpdump, I can validate that the client actually uses that same URL which returns in a 404:
_Originally posted by @kenzodeluxe in https://github.com/ValveSoftware/steam-for-linux/issues/6340#issuecomment-509289830_