| Summary: | Chrome fails to open proxy settings | ||
|---|---|---|---|
| Product: | [Plasma] plasmashell | Reporter: | 0BADC0DE <vincenzo.romano> |
| Component: | generic-crash | Assignee: | Plasma Bugs List <plasma-bugs-null> |
| Status: | RESOLVED UPSTREAM | ||
| Severity: | major | CC: | me, nicolas.fella, Sparky_14145 |
| Priority: | NOR | ||
| Version First Reported In: | 6.0.2 | ||
| Target Milestone: | 1.0 | ||
| Platform: | Arch Linux | ||
| OS: | Linux | ||
| Latest Commit: | Version Fixed/Implemented In: | ||
| Sentry Crash Report: | |||
| Attachments: | Screenshot of the error | ||
|
Description
0BADC0DE
2024-03-25 11:18:51 UTC
This looks like Chrome is invoking the proxy settings incorrectly. It looks like it is running "kcmshell6 /usr/bin/proxy", which makes no sense. It should be "kcmshell6 kcm_proxy", or better something like "xdg-open systemsettings://kcm_proxy". Please report this to Chrome And what about the fact that is was working correctly until v5? Chrome likely runs different code depending on the Plasma version, and the code for Plasma 6 is broken *** Bug 484570 has been marked as a duplicate of this bug. *** (In reply to Nicolas Fella from comment #1) > This looks like Chrome is invoking the proxy settings incorrectly. > > It looks like it is running "kcmshell6 /usr/bin/proxy", which makes no > sense. It should be "kcmshell6 kcm_proxy", or better something like > "xdg-open systemsettings://kcm_proxy". > > Please report this to Chrome I can reproduce this but it works on a checked out build of kcmutils. Any idea why it works differently? Why would kcmutils work differently when installed compared to when ran in-tree? $ kcmshell6 proxy kf.coreaddons: "Could not load plugin from /usr/bin/proxy: Failed to extract plugin meta data from '/usr/bin/proxy': '/usr/bin/proxy' is not a Qt plugin (metadata not found)" kf.coreaddons: "Could not load plugin from /usr/bin/proxy: Failed to extract plugin meta data from '/usr/bin/proxy': '/usr/bin/proxy' is not a Qt plugin (metadata not found)" git clone https://invent.kde.org/frameworks/kcmutils.git kcmutils cd kcmutils mkdir build cd build cmake .. make -j$(nproc) cd - env PATH="${PWD}/build/bin:${PATH}" ./build/bin/kcmshell6 proxy # displays the proxy dialogue as expected. |