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 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

View File

@ -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>

View File

@ -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();