Skip to content

Commit

Permalink
v1.0.4
Browse files Browse the repository at this point in the history
Fix bug in list retrieval
  • Loading branch information
nikkilocke committed Sep 5, 2019
1 parent 40fd2c3 commit a8a59a0
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion NextcloudApi/ApiEntry.cs
Original file line number Diff line number Diff line change
Expand Up @@ -299,7 +299,7 @@ public virtual ApiList<T> Convert(JObject j) {

public class ApiCollection<T> : ApiList<T> {
public override ApiList<T> Convert(JObject j) {
JObject col = (JObject)j.SelectToken(Path);
JToken col = j.SelectToken(Path);
return new ApiCollection<T>() {
MetaData = j["MetaData"].ConvertToObject<MetaData>(),
Request = Request,
Expand Down
4 changes: 2 additions & 2 deletions NextcloudApi/NextcloudApi.csproj
Original file line number Diff line number Diff line change
Expand Up @@ -12,8 +12,8 @@
<RepositoryUrl>https://github.com/nikkilocke/NextcloudAp</RepositoryUrl>
<RepositoryType>Github</RepositoryType>
<PackageTags>Nextcloud C# API</PackageTags>
<PackageReleaseNotes>Separate error and log streams</PackageReleaseNotes>
<Version>1.0.3</Version>
<PackageReleaseNotes>Fix bug in list retrieval</PackageReleaseNotes>
<Version>1.0.4</Version>
</PropertyGroup>

<ItemGroup>
Expand Down

0 comments on commit a8a59a0

Please sign in to comment.