Remove filtering-out audible plus titles during library import. ie: they are now included
This commit is contained in:
parent
5ec6994da7
commit
0306c958d1
2 changed files with 3 additions and 3 deletions
|
|
@ -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
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue