mirror of
https://github.com/zoriya/octokit.net.git
synced 2025-12-05 23:06:10 +00:00
fix: Fixes PushId datatype to not overflow (fix user activity exception)
Bug introduced in #2795 Closes #2822 Co-authored-by: Nick Floyd <139819+nickfloyd@users.noreply.github.com>
This commit is contained in:
committed by
GitHub
parent
4254287aef
commit
9bd519fc42
@@ -6,7 +6,7 @@ namespace Octokit
|
||||
[DebuggerDisplay("{DebuggerDisplay,nq}")]
|
||||
public class PushEventPayload : ActivityPayload
|
||||
{
|
||||
public int PushId { get; private set; }
|
||||
public long PushId { get; private set; }
|
||||
public int DistinctSize { get; private set; }
|
||||
public string Before { get; private set; }
|
||||
public string Head { get; private set; }
|
||||
|
||||
Reference in New Issue
Block a user