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:
Mitch Capper (they, them)
2024-01-18 13:31:53 -08:00
committed by GitHub
parent 4254287aef
commit 9bd519fc42

View File

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