Do not import non-library 'audible plus' titles
This commit is contained in:
parent
99cc6a6425
commit
0938c84929
3 changed files with 4 additions and 4 deletions
|
|
@ -46,8 +46,8 @@ namespace InternalUtilities
|
|||
var api = await GetApiAsync(account, callback);
|
||||
var items = await api.GetAllLibraryItemsAsync();
|
||||
|
||||
// remove episode parents
|
||||
items.RemoveAll(i => i.IsEpisodes);
|
||||
// remove episode parents and 'audible plus' check-outs
|
||||
items.RemoveAll(i => i.IsEpisodes || i.IsNonLibraryAudiblePlus);
|
||||
|
||||
#region // episode handling. doesn't quite work
|
||||
// // add individual/children episodes
|
||||
|
|
|
|||
|
|
@ -13,7 +13,7 @@
|
|||
<!-- <PublishSingleFile>true</PublishSingleFile> -->
|
||||
<RuntimeIdentifier>win-x64</RuntimeIdentifier>
|
||||
|
||||
<Version>3.1.12.300</Version>
|
||||
<Version>3.1.12.302</Version>
|
||||
</PropertyGroup>
|
||||
|
||||
<ItemGroup>
|
||||
|
|
|
|||
|
|
@ -42,7 +42,7 @@ namespace LibationWinForms.Dialogs
|
|||
|
||||
private void editBtn_Click(object sender, EventArgs e)
|
||||
{
|
||||
if (new AccountsDialog(_parent).ShowDialog()== DialogResult.OK)
|
||||
if (new AccountsDialog(_parent).ShowDialog() == DialogResult.OK)
|
||||
{
|
||||
// clear grid
|
||||
this.accountsClb.Items.Clear();
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue