Summary: | [PATCH] proxy setting "connect directly" ignored | ||
---|---|---|---|
Product: | [Applications] amarok | Reporter: | Felix Geyer <debfx-kde> |
Component: | general | Assignee: | Amarok Developers <amarok-bugs-dist> |
Status: | RESOLVED FIXED | ||
Severity: | normal | ||
Priority: | NOR | ||
Version: | 1.4.3 | ||
Target Milestone: | --- | ||
Platform: | Fedora RPMs | ||
OS: | Linux | ||
Latest Commit: | Version Fixed In: | ||
Sentry Crash Report: |
Description
Felix Geyer
2006-10-14 13:15:37 UTC
Awesome, thanks for spotting this! I'll commit it as soon as I get a chance. If someone else beats me to it, that's fine too :) Patch applied in SVN commit 595474. Index: ChangeLog =================================================================== --- ChangeLog (revision 595466) +++ ChangeLog (working copy) @@ -51,6 +51,8 @@ * Show a proper tag dialog when viewing information for DAAP music shares. BUGFIXES: + * Stop scripts using a proxy when it's disabled in KDE. Patch by Felix Geyer + <sniperbeamer_disc1@fobos.de>. * While playing Last.fm Streams, sometimes metadata wouldn't be updated on track changes. Patch by Tom Kaitchuck <tkaitchuck@comcast.net>. * Speed patch to load playlist columns from statistic tables on population Index: src/scriptmanager.cpp =================================================================== --- src/scriptmanager.cpp (revision 595466) +++ src/scriptmanager.cpp (working copy) @@ -97,7 +97,9 @@ QString proxyForProtocol(const QString& protocol) { - return KProtocolManager::proxyFor ( protocol ); + if ( KProtocolManager::useProxy() ) + return KProtocolManager::proxyFor( protocol ); + return QString::null; } |