However, on some double click of a cover in the CoverSearchPane produces the following output:
Traceback (most recent call last):
File "/usr/lib/rhythmbox/plugins/rb/Loader.py", line 33, in callback_with_gdk_lock
v = callback(data, *args)
File "/home/dad/.local/share/rhythmbox/plugins/coverart_browser/coverart_album.py", line 1424, in cover_update
tmp.write(data)
TypeError: expected a character buffer object
Putting in trace events, it looks like the tmp.write(data) in coverart_album is failing - data is None.
Other stuff I noted - the CoverSearchPane inherits from Gtk.VBox - this is deprecated.
Drag and drop seems to always work.
However, on some double click of a cover in the CoverSearchPane produces the following output:
Putting in trace events, it looks like the
tmp.write(data)
in coverart_album is failing - data is None.Other stuff I noted - the CoverSearchPane inherits from Gtk.VBox - this is deprecated.
EDIT - looks like some URIs coverart_search.set_cover looks like this: http://s3.amazonaws.com/dfree/warehouse/album_art/ec9bd7a8-b4e6-11e1-bc77-1231381d7f9f.jpg%3F1339544062
The % stuff is spurious - trim this somehow? is all URI's ending in .jpg ?