acousticbrainz plugin: Access acousticbrainz.org over HTTPS.

This commit is contained in:
Frederik “Freso” S. Olesen 2016-05-20 01:01:16 +02:00
parent ef7cca4c12
commit 37b9360706
No known key found for this signature in database
GPG key ID: 27628EAF5DC1403E
2 changed files with 6 additions and 1 deletions

View file

@ -22,7 +22,7 @@ import operator
from beets import plugins, ui
ACOUSTIC_BASE = "http://acousticbrainz.org/"
ACOUSTIC_BASE = "https://acousticbrainz.org/"
LEVELS = ["/low-level", "/high-level"]

View file

@ -57,6 +57,11 @@ Fixes:
* :doc:`/plugins/convert`: The `never_convert_lossy_files` option now
considers AIFF a lossless format. :bug:`2005`
Other changes:
* :doc:`/plugins/acousticbrainz`: AcousticBrainz lookups are now done over
HTTPS. Thanks to :user:`Freso`. :bug:`2007`
1.3.17 (February 7, 2016)
-------------------------