Summary: | the latest mldonkey core responds with "parsing http url" instead of "ok" when sending it a http link to a torrent file, resulting in an error message from kmldonkey_submit | ||
---|---|---|---|
Product: | [Applications] kmldonkey | Reporter: | Mathias Homann <Mathias.Homann> |
Component: | general | Assignee: | Petter Stokke <ummo> |
Status: | CLOSED FIXED | ||
Severity: | normal | ||
Priority: | NOR | ||
Version: | 0.10 | ||
Target Milestone: | --- | ||
Platform: | unspecified | ||
OS: | Linux | ||
Latest Commit: | Version Fixed In: | ||
Sentry Crash Report: |
Description
Mathias Homann
2005-05-11 13:04:39 UTC
*** Bug has been marked as fixed ***. i've got similiar bug, but with ed2k links (proposed patch below) $ cat ../SOURCES/kmldonkey-submit.patch my core reports different message back kmldonkey: Connecting to 1.1.1.1:4001 kmldonkey: CoreProtocol message, version 32 kmldonkey: Using protocol 32 kmldonkey: Authenticating... kmldonkey: Core reported version 2.5.30.17 kmldonkey: Donkey authenticated. kmldonkey: Callback count incremented: 1 kmldonkey: Submitted URL: ed2k://|file| kmldonkey: Callback cmd: dllink "ed2k://|file| kmldonkey: Callback result: Added link : ed2k://|file| kmldonkey: Callback count decremented: 0 kmldonkey: Socket closed. kmldonkey: Donkey disconnected: 0 --- kmldonkey-0.10.1/src/scripts/submit.cpp~ 2005-07-26 19:40:40.000000000 +0300 +++ kmldonkey-0.10.1/src/scripts/submit.cpp 2005-12-18 01:53:57.000000000 +0200 @@ -48,7 +48,7 @@ { kdDebug() << "Callback cmd: " << cmd << endl; kdDebug() << "Callback result: " << res << endl; - if (res.lower() != "done" && !res.contains("parsing http url", false)) { + if (res.lower() != "done" && !res.contains("parsing http url", false) && !res.contains("Added link")) { /* if (res.contains("force_download")) { if (KMessageBox::warningYesNo(0, i18n("Failed to submit URL %1\n\nForce download?") I think I fixed that already, will check later. Yes, I've already fixed it. Thanks for the report, though. :) |