Skip to content

Commit

Permalink
chore: Use HTTPS for icecast access (#881)
Browse files Browse the repository at this point in the history
HTTP is not private and allows man-in-the-middle attacks. HTTPS provides some privacy and protects against simple man-in-the-middle attacks.
  • Loading branch information
genodeftest committed Jun 26, 2023
1 parent e9a7e5c commit 7a787b8
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion plugins/icecast/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -69,7 +69,7 @@ def __init__(self, exaile):
"""
self.exaile = exaile
self.user_agent = exaile.get_user_agent_string('icecast')
self.icecast_url = 'http://dir.xiph.org'
self.icecast_url = 'https://dir.xiph.org'

self.xml_url = self.icecast_url + '/yp.xml'
self.genres_url = self.icecast_url + '/genres'
Expand Down

0 comments on commit 7a787b8

Please sign in to comment.