Skip to content

Commit

Permalink
Fixes PushId datatype to not overflow (fix user activity exception)
Browse files Browse the repository at this point in the history
Bug introduced in octokit#2795 Closes octokit#2822
  • Loading branch information
mitchcapper committed Jan 3, 2024
1 parent b1a2cf5 commit b67d0a8
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -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; }
Expand Down

0 comments on commit b67d0a8

Please sign in to comment.