https://bugs.kde.org/show_bug.cgi?id=520289
--- Comment #2 from Kai Uwe Broulik <[email protected]> --- Can’t reproduce downloading a 7.9 GiB Windows 11 ISO from Microsoft. Can you check the following: 1. on chrome://extensions/ enable developer mode 2. on plasma browser integration do Inspect service worker that should give you the dev console for the extension. In there type the following: chrome.downloads.search({state: "in_progress"}, console.log) That is the data the extension sends to the host for all ongoing downloads. Perhaps do that repeatedly to see what is going on. The question is whether the browser already reports rubbish (nothing we can do) or we receive data that is somehow bogus and causes issues on the host side. You may also want to monitor download changes: chrome.downloads.onChanged.addListener(console.log) That will print whenever a download changes its properties. Note that it only does that for status changes like running/paused, size, urls, etc, it won’t do that periodically as the download progresses. That we do on a timer with the command above. -- You are receiving this mail because: You are watching all bug changes.
