Do not import non-library 'audible plus' titles

This commit is contained in:
Robert McRackan 2020-08-27 13:57:53 -04:00
parent 99cc6a6425
commit 0938c84929
3 changed files with 4 additions and 4 deletions

View File

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

View File

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

View File

@ -42,7 +42,7 @@ namespace LibationWinForms.Dialogs
private void editBtn_Click(object sender, EventArgs e) private void editBtn_Click(object sender, EventArgs e)
{ {
if (new AccountsDialog(_parent).ShowDialog()== DialogResult.OK) if (new AccountsDialog(_parent).ShowDialog() == DialogResult.OK)
{ {
// clear grid // clear grid
this.accountsClb.Items.Clear(); this.accountsClb.Items.Clear();