Kodi Community Forum

Full Version: Mixed playlist no longer populating
You're currently viewing a stripped down version of our content. View the full version with proper formatting.
Code:
<?xml version="1.0" encoding="UTF-8" standalone="yes" ?>
<smartplaylist

type="mixed">
    <name>Marvel DC United</name>
    <match>one</match>
  

<rule field="playlist" operator="is">
        <value>Superhero

TV.xsp</value>
    </rule>
    <rule field="playlist" operator="is">
    

   <value>Superhero Movies.xsp</value>
    </rule>
    

<limit>100</limit>
    <order direction="ascending">random</order>
</smartplaylist>
I figured it out. The syntax <value></value> wasn't needed.
The format is:

Code:
<?xml version="1.0" encoding="UTF-8" standalone="yes" ?>
<smartplaylist type="mixed">
<name>NAME OF YOUR PLAYLIST</name>
<match>one</match>
<rule field="playlist" operator="is">EPISODES PLAYLIST.xsp</rule>
<rule field="playlist" operator="is">MOVIE PLAYLIST.xsp</rule>
<limit>50</limit>
<order direction="ascending">random</order>
</smartplaylist>