mirror of
https://github.com/beetbox/beets.git
synced 2026-01-04 06:53:27 +01:00
Fix kodi url
This commit is contained in:
parent
51961bbba2
commit
7eb9913391
1 changed files with 1 additions and 1 deletions
|
|
@ -33,7 +33,7 @@ from beets.plugins import BeetsPlugin
|
|||
def update_kodi(host, port, user, password):
|
||||
"""Sends request to the Kodi api to start a library refresh.
|
||||
"""
|
||||
url = "http://{0}:{1}/jsonrpc/".format(host, port)
|
||||
url = "http://{0}:{1}/jsonrpc".format(host, port)
|
||||
|
||||
"""Content-Type: application/json is mandatory
|
||||
according to the kodi jsonrpc documentation"""
|
||||
|
|
|
|||
Loading…
Reference in a new issue