Skip to content

Commit

Permalink
Merge pull request #3596 from jef/jef/fix-subsonic
Browse files Browse the repository at this point in the history
feat: uses new subsonic format as default
  • Loading branch information
sampsyo authored May 18, 2020
2 parents 5c91013 + 1374aa2 commit 469541d
Showing 1 changed file with 3 additions and 8 deletions.
11 changes: 3 additions & 8 deletions beetsplug/subsonicupdate.py
Original file line number Diff line number Diff line change
Expand Up @@ -17,11 +17,9 @@
Your Beets configuration file should contain
a "subsonic" section like the following:
subsonic:
host: 192.168.x.y (Subsonic server IP)
port: 4040 (default)
user: <your username>
pass: <your password>
contextpath: /subsonic
url: https://mydomain.com:443/subsonic
user: username
pass: password
"""
from __future__ import division, absolute_import, print_function

Expand Down Expand Up @@ -84,11 +82,8 @@ def __init__(self):

# Set default configuration values
config['subsonic'].add({
'host': 'localhost',
'port': '4040',
'user': 'admin',
'pass': 'admin',
'contextpath': '/',
'url': 'http://localhost:4040',
})

Expand Down

0 comments on commit 469541d

Please sign in to comment.