Version: (using KDE Devel) Installed from: Compiled sources OS: Linux When DCC folder is blank in Konvi settings, and a file is received via DCC, clicking the Open button on DCC Status tab reports, for example, "Malformed URL. ./ae015.jpg". When a DCC folder is specified in settings, received file opens correctly.
Suggested fix in dccpanel.cpp. In function DccPanel::runDcc(), change line new KRun(item->GetFullPath()); to { KURL kurl; QDir dir; kurl.setPath(dir.cleanDirPath(dir.absFilePath(item->getFullPath(), TRUE))); new KRun(kurl); }
Committed to CVS by Dario.