Manul wrote: 
> From my observation, setting 25000 or 5 just limits the length of the
> returned artists_loop but doesn't affect indexList or count at all. 

I know. But Material does not need the full artist/album list for this
call, hence its an error - but not a showstopper.

Manul wrote: 
> 
> I still see the same result, regardless of whether I include the role_id
> tag or don't:
> > 
Code:
--------------------
  >   > >>> query_album_artists = 
'{"id":1,"method":"slim.request","params":["",["artists",0,5,"role:ALBUMARTIST","tags:CCZs"]]}'
  > >>> query_all_artists = 
'{"id":1,"method":"slim.request","params":["",["artists",0,5,"tags:CCZs"]]}'
  > >>> 
requests.post(url=url,data=query_album_artists).json()['result']['count']
  > 1845
  > >>> requests.post(url=url,data=query_all_artists).json()['result']['count']
  > 1845
  > >>> index_album_artists = 
requests.post(url=url,data=query_album_artists).json()['result']['indexList']
  > >>> index_all_artists = 
requests.post(url=url,data=query_all_artists).json()['result']['indexList']
  > >>> index_all_artists == index_album_artists
  > True
  > 
--------------------
> > 

Try "role_id:ALBUMARTIST".

I dont have my real library at hand, but I've done a quick test with my
fake library, and I do get different results when "role_id:ALBUMARTIST"
is specified. (And subsequently get the correct values, when it is later
used to list a letter group).


------------------------------------------------------------------------
cpd73's Profile: http://forums.slimdevices.com/member.php?userid=66686
View this thread: http://forums.slimdevices.com/showthread.php?t=109624

_______________________________________________
plugins mailing list
[email protected]
http://lists.slimdevices.com/mailman/listinfo/plugins

Reply via email to