Custom Query (2447 matches)
Results (442 - 444 of 2447)
Ticket | Resolution | Summary | Owner | Reporter |
---|---|---|---|---|
#1228 | Fixed | Console - Unhandled error in Deferred | ||
Description |
While using deluge-console, tried using the connect command with a non-existent deluge server and when exiting from the app the following is returned in the shell. Unhandled error in Deferred: Traceback (most recent call last): Failure: twisted.internet.error.ConnectionRefusedError: Connection was refused by other side: 111: Connection refused. |
|||
#3275 | WontFix | Contact info of forum admin | ||
Description |
Hi i am unable to reister on the deluge forum. Something is wrong with the Captcha question here is a screenshot: http://i.imgur.com/7cOb0Lv.png I tried to join the IRC but it keeps kicking me to a room called /delugeSpam Because i am unable to register on the forum it also does not show me the contact info to speak with one of the admins. English is not my primary language so I do not know the answer to the captcha question. I keep trying but it tells me maximum tries exceeded. So can you help me by telling me the answer or by manually approving my account or by giving me the contact info of the admin so i can speak with him? I contacted you before and you just closed my ticket in a rude manner. Why do you find the need to be rude to me? I am not your enemy. Im just trying to find help on the forum |
|||
#3521 | Fixed | Content-type's charset should be accepted and probably ignored for jsonrpc communication | ||
Description |
Sending a request with $ curl 'http://127.0.0.1:8112/json' -X POST \ -H 'Content-Type: application/json' \ --data-raw '{"method":"daemon.get_version","params":[],"id":1}' { "result": null , "error": { "message": "Not authenticated" , "code": 1 } , "id": 1}
But it should work too with $ curl 'http://127.0.0.1:8112/json' -X POST \ -H 'Content-Type: application/json;charset=utf-8' \ --data-raw '{"method":"daemon.get_version","params":[],"id":1}' { "result": null , "id": null , "error": { "code": 5 , "message": "JSONException: Invalid JSON request content-type: application/json;charset=utf-8" } } This is a valid content-type as per https://greenbytes.de/tech/webdav/rfc2616.html#header.content-type I believe I know how to fix this and will create a PR for it. |