Skip to content

Commit

Permalink
#179 [Dropbox] [Google Drive] Open from Cloud Drive only list partial…
Browse files Browse the repository at this point in the history
… content
  • Loading branch information
Kyrodan committed Jan 10, 2020
1 parent 523ed50 commit 140d182
Show file tree
Hide file tree
Showing 5 changed files with 9 additions and 6 deletions.
4 changes: 4 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -5,6 +5,10 @@
- \#179 \[Dropbox\] \[Google Drive\] Open from Cloud Drive only list partial content
- \#196 HiDrive: Saving to root folder throws exception

### Improved

- Updated Dependencies (Dropbox)


## 1.6.0 (2020-01-08)

Expand Down
3 changes: 1 addition & 2 deletions KeeAnywhere/KeeAnywhere.csproj
Original file line number Diff line number Diff line change
Expand Up @@ -60,8 +60,7 @@
<HintPath>..\packages\CredentialManagement.1.0.2\lib\net35\CredentialManagement.dll</HintPath>
</Reference>
<Reference Include="Dropbox.Api, Version=4.0.0.0, Culture=neutral, PublicKeyToken=310f0e82fbb45d01, processorArchitecture=MSIL">
<HintPath>..\packages\Dropbox.Api.4.8.1\lib\net45\Dropbox.Api.dll</HintPath>
<Private>True</Private>
<HintPath>..\packages\Dropbox.Api.4.9.4\lib\net45\Dropbox.Api.dll</HintPath>
</Reference>
<Reference Include="Google.Apis, Version=1.34.0.0, Culture=neutral, PublicKeyToken=4b01fa6e34db77ab, processorArchitecture=MSIL">
<HintPath>..\packages\Google.Apis.1.34.0\lib\net45\Google.Apis.dll</HintPath>
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -90,8 +90,8 @@ public async Task<IEnumerable<StorageProviderItem>> GetChildrenByParentItem(Stor
while (dbxItems.HasMore)
{
dbxItems = await Api.Files.ListFolderContinueAsync(dbxItems.Cursor);
items.Concat(dbxItems.Entries.Select(_ => CreateStorageProviderItem(parent, _)));
}
items = items.Concat(dbxItems.Entries.Select(_ => CreateStorageProviderItem(parent, _)));
}

return items.ToArray();
}
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -148,7 +148,7 @@ public async Task<IEnumerable<StorageProviderItem>> GetChildrenByParentItem(Stor
query.PageToken = items.NextPageToken;

items = await query.ExecuteAsync();
newItems.Concat(items.Files.Select(_ => new StorageProviderItem()
newItems = newItems.Concat(items.Files.Select(_ => new StorageProviderItem()
{
Id = _.Id,
Name = _.Name,
Expand Down
2 changes: 1 addition & 1 deletion KeeAnywhere/packages.config
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@
<package id="BouncyCastle-PCL" version="1.0.0.6" targetFramework="net452" />
<package id="Box.V2" version="3.9.2" targetFramework="net452" />
<package id="CredentialManagement" version="1.0.2" targetFramework="net452" />
<package id="Dropbox.Api" version="4.8.1" targetFramework="net452" />
<package id="Dropbox.Api" version="4.9.4" targetFramework="net452" />
<package id="Google.Apis" version="1.34.0" targetFramework="net452" />
<package id="Google.Apis.Auth" version="1.34.0" targetFramework="net452" />
<package id="Google.Apis.Core" version="1.34.0" targetFramework="net452" />
Expand Down

0 comments on commit 140d182

Please sign in to comment.