Skip to content
This repository was archived by the owner on Nov 27, 2024. It is now read-only.

Commit 8b5a6e9

Browse files
committed
fix issue #41
1 parent 7c6a212 commit 8b5a6e9

File tree

1 file changed

+2
-1
lines changed

1 file changed

+2
-1
lines changed

script.module.codequick/lib/codequick/support.py

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -418,7 +418,8 @@ def build_path(callback=None, args=None, query=None, **extra_query):
418418
query = "_pickle_={}".format(pickled.decode("ascii") if PY3 else pickled)
419419

420420
# Build kodi url with new path and query parameters
421-
return urlparse.urlunsplit(("plugin", plugin_id, route.path, query, ""))
421+
# NOTE: Kodi really needs a trailing '/'
422+
return urlparse.urlunsplit(("plugin", plugin_id, route.path + "/", query, ""))
422423

423424

424425
# Setup kodi logging

0 commit comments

Comments
 (0)