Remove filtering-out audible plus titles during library import. ie: they are now included

This commit is contained in:
Robert McRackan 2021-06-21 15:10:40 -04:00
parent 5ec6994da7
commit 0306c958d1
2 changed files with 3 additions and 3 deletions

View File

@ -60,8 +60,8 @@ namespace InternalUtilities
{
var items = await api.GetAllLibraryItemsAsync();
// remove episode parents and 'audible plus' check-outs
items.RemoveAll(i => i.IsEpisodes || i.IsNonLibraryAudiblePlus);
// remove episode parents
items.RemoveAll(i => i.IsEpisodes);
#region // episode handling. doesn't quite work
// // add individual/children episodes

View File

@ -13,7 +13,7 @@
<!-- <PublishSingleFile>true</PublishSingleFile> -->
<RuntimeIdentifier>win-x64</RuntimeIdentifier>
<Version>4.4.0.34</Version>
<Version>4.4.0.35</Version>
</PropertyGroup>
<ItemGroup>