2023-01-04, 02:14
(If this is the wrong forum for this, please point me in the correct direction.)
I think this might be a Kodi bug, but it's possible I'm missing something.
I have a playlist that's a union of two other playlists:
The first playlist, Evan: [aux] Tagged TV, correctly matches 146 items. The second playlist Evan: [aux] Tagged Finished TV, correctly matches 0 items. The union, Evan: TV, however, matches 147 items.
Evan: [aux] Tagged Finished TV is defined as
The extra item is tagged Evan Finished and is not in Both: TV, but it also is not in TV: Up-to-date, so it doesn't show up in this playlist (and, so, shouldn't show up in Evan: TV). It's the only item tagged as Evan Finished, but if I tag another show with unwatched episodes, it similarly gets captured by Evan: TV.
Up-to-date is defined as
Any ideas?
I think this might be a Kodi bug, but it's possible I'm missing something.
I have a playlist that's a union of two other playlists:
xml:
<?xml version="1.0" encoding="UTF-8" standalone="yes" ?>
<smartplaylist type="tvshows">
<name>Evan: TV</name>
<match>one</match>
<rule field="playlist" operator="is">
<value>Evan: [aux] Tagged TV</value>
</rule>
<rule field="playlist" operator="is">
<value>Evan: [aux] Tagged Finished TV</value>
</rule>
<order direction="ascending">sorttitle</order>
</smartplaylist>
The first playlist, Evan: [aux] Tagged TV, correctly matches 146 items. The second playlist Evan: [aux] Tagged Finished TV, correctly matches 0 items. The union, Evan: TV, however, matches 147 items.
Evan: [aux] Tagged Finished TV is defined as
xml:
<?xml version="1.0" encoding="UTF-8" standalone="yes" ?>
<smartplaylist type="tvshows">
<name>Evan: [aux] Tagged Finished TV</name>
<match>all</match>
<rule field="tag" operator="is">
<value>Evan Finished</value>
</rule>
<rule field="playlist" operator="is">
<value>TV: Up-to-date</value>
</rule>
<rule field="playlist" operator="isnot">
<value>Both: TV</value>
</rule>
</smartplaylist>
The extra item is tagged Evan Finished and is not in Both: TV, but it also is not in TV: Up-to-date, so it doesn't show up in this playlist (and, so, shouldn't show up in Evan: TV). It's the only item tagged as Evan Finished, but if I tag another show with unwatched episodes, it similarly gets captured by Evan: TV.
Up-to-date is defined as
It's meant to capture shows with no unwatched episodes (and appears to do the job).xml:
<?xml version="1.0" encoding="UTF-8" standalone="yes" ?>
<smartplaylist type="tvshows">
<name>TV: Up-to-date</name>
<match>all</match>
<rule field="playcount" operator="greaterthan">
<value>0</value>
</rule>
<order direction="descending">sorttitle</order>
</smartplaylist>
Any ideas?