Custom Query (2449 matches)

Filters
 
Or
 
  
 
Columns

Show under each result:


Results (55 - 57 of 2449)

Ticket Resolution Summary Owner Reporter
#2872 Duplicate Resume All slumbergod
Description

Since the update to 1.3.13 the behaviour of RESUME ALL from right right click context menu in the notification area (Xubuntu 16.04) has changed.

If a torrent has been added in PAUSED state, or an existing torrent has been manually paused, selecting RESUME ALL has no effect on them.

Has anyone else noticed this behaviour?

#2874 Duplicate console-ui update trackers ElevatorChamp
Description

Link to another ticket (5 years ago) regarding the same thing: http://dev.deluge-torrent.org/ticket/1590

Commit that supposedly implemented it: http://dev.deluge-torrent.org/changeset/0d560bcd6fcfb4e89f23b2d11fe4bd6d3a5ec015/

Yet it is not a command in deluge-console. I would very much like this command back as it would allow me to finish my script more elegantly (instead of having to pause all torrents then resume them).

#2875 Fixed WebUI Json dumps Error yueyoum
Description

when upload torrent via the web ui which the torrent's content contains CJK (Chinese, Japanese, Korea) and not encoding by UTF8,

An Error will occurred at https://github.com/deluge-torrent/deluge/blob/develop/deluge/ui/web/json_api.py#L213

The error message is:

[ERROR   ] 11:59:38 json_api:271 'utf8' codec can't decode byte 0xe5 in position 0: invalid continuation byte
Traceback (most recent call last):
  File "/usr/lib/python2.7/dist-packages/deluge/ui/web/json_api.py", line 293, in render
    d = self._on_json_request(request)
  File "/usr/lib/python2.7/dist-packages/deluge/ui/web/json_api.py", line 265, in _on_json_request
    return self._send_response(request, response)
  File "/usr/lib/python2.7/dist-packages/deluge/ui/web/json_api.py", line 276, in _send_response
    response = json.dumps(response)
  File "/usr/lib/python2.7/json/__init__.py", line 243, in dumps
    return _default_encoder.encode(obj)
  File "/usr/lib/python2.7/json/encoder.py", line 207, in encode
    chunks = self.iterencode(o, _one_shot=True)
  File "/usr/lib/python2.7/json/encoder.py", line 270, in iterencode
    return _iterencode(o, 0)
UnicodeDecodeError: 'utf8' codec can't decode byte 0xe5 in position 0: invalid continuation byte

I try to change response = json.dumps(response) to response = json.dumps(response, ensure_ascii=False), this can fix the error.

The torrent in the attach file.

Note: See TracQuery for help on using queries.