mirror of
https://github.com/jellyfin/jellyfin-kodi.git
synced 2024-11-10 04:06:11 +00:00
use new date param
This commit is contained in:
parent
e972ae2729
commit
72ff484777
2 changed files with 2 additions and 2 deletions
|
@ -1,7 +1,7 @@
|
||||||
<?xml version="1.0" encoding="UTF-8" standalone="yes"?>
|
<?xml version="1.0" encoding="UTF-8" standalone="yes"?>
|
||||||
<addon id="plugin.video.emby"
|
<addon id="plugin.video.emby"
|
||||||
name="Emby"
|
name="Emby"
|
||||||
version="1.1.25"
|
version="1.1.26"
|
||||||
provider-name="Emby.media">
|
provider-name="Emby.media">
|
||||||
<requires>
|
<requires>
|
||||||
<import addon="xbmc.python" version="2.1.0"/>
|
<import addon="xbmc.python" version="2.1.0"/>
|
||||||
|
|
|
@ -87,7 +87,7 @@ class LibrarySync(threading.Thread):
|
||||||
|
|
||||||
lastSync = urllib2.quote(lastSync)
|
lastSync = urllib2.quote(lastSync)
|
||||||
|
|
||||||
url = "{server}/Emby.Kodi.SyncQueue/{UserId}/" + lastSync + "/GetItems?format=json"
|
url = "{server}/Emby.Kodi.SyncQueue/{UserId}/GetItems?LastUpdateDT=" + lastSync + "&format=json"
|
||||||
utils.logMsg("Sync Database", "Incremental Sync Get Items URL : " + url, 0)
|
utils.logMsg("Sync Database", "Incremental Sync Get Items URL : " + url, 0)
|
||||||
|
|
||||||
results = du.downloadUrl(url)
|
results = du.downloadUrl(url)
|
||||||
|
|
Loading…
Reference in a new issue