Skip to content

Commit

Permalink
item_revision_id updated to long
Browse files Browse the repository at this point in the history
  • Loading branch information
Pavlo Basiuk committed Jan 25, 2018
1 parent 6dd269c commit 4ea37ee
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions Source/Podio .NET/Models/ItemRevision.cs
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@ public class ItemRevision
public int Revision { get; set; }

[JsonProperty("item_revision_id")]
public int? ItemRevisionId { get; set; }
public long? ItemRevisionId { get; set; }

[JsonProperty("app_revision")]
public int? AppRevision { get; set; }
Expand All @@ -26,4 +26,4 @@ public class ItemRevision
[JsonProperty("type")]
public string Type { get; set; }
}
}
}

3 comments on commit 4ea37ee

@steveglen
Copy link

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

@PavloBasiuk do you have any indication when a nuget package will be available to fix this issue?

@PavloBasiuk
Copy link
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Not yet :)

@steveglen
Copy link

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

@PavloBasiuk can you advise which branch/tag/commit here the current nuget Podio package 1.5.6 is built from (link below)? I'd like to apply this fix to it and build locally to get my screaming users back online, but the current master branch has a lot more changes.

https://www.nuget.org/packages/Podio/1.5.6

Please sign in to comment.