From 37b9360706bd1fb4ce90924116db837e615ac024 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Frederik=20=E2=80=9CFreso=E2=80=9D=20S=2E=20Olesen?= Date: Fri, 20 May 2016 01:01:16 +0200 Subject: [PATCH] acousticbrainz plugin: Access acousticbrainz.org over HTTPS. --- beetsplug/acousticbrainz.py | 2 +- docs/changelog.rst | 5 +++++ 2 files changed, 6 insertions(+), 1 deletion(-) diff --git a/beetsplug/acousticbrainz.py b/beetsplug/acousticbrainz.py index 6acea8140..507b3e049 100644 --- a/beetsplug/acousticbrainz.py +++ b/beetsplug/acousticbrainz.py @@ -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"] diff --git a/docs/changelog.rst b/docs/changelog.rst index c1a5e221a..7f2ffcd3a 100644 --- a/docs/changelog.rst +++ b/docs/changelog.rst @@ -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) -------------------------