-
Notifications
You must be signed in to change notification settings - Fork 1.1k
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
#2927: comment id model update to long instead of int #2928
Changes from 1 commit
4f3c8e8
4b2e677
fe329e7
3022734
1977413
f5d035b
10dc141
b52b57c
File filter
Filter by extension
Conversations
Jump to
Diff view
Diff view
There are no files selected for viewing
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. Looks like a few comment id/number parameters were not updated to There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. Fixed |
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. Looks like a few comment id/number parameters were not updated to There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. Fixed |
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -75,7 +75,7 @@ public interface IPullRequestReviewCommentReactionsClient | |
/// <param name="commentId">The issue id</param> | ||
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. Documentation is wrong here? There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. Fixed |
||
/// <param name="reactionId">The reaction id</param> | ||
/// <returns></returns> | ||
Task Delete(string owner, string name, int commentId, int reactionId); | ||
Task Delete(string owner, string name, long commentId, long reactionId); | ||
|
||
/// <summary> | ||
/// Deletes a reaction for a specified Pull Request comment | ||
|
@@ -85,6 +85,6 @@ public interface IPullRequestReviewCommentReactionsClient | |
/// <param name="commentId">The issue id</param> | ||
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. Documentation is wrong here? There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. It is. There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. Fixed |
||
/// <param name="reactionId">The reaction id</param> | ||
/// <returns></returns> | ||
Task Delete(long repositoryId, int commentId, int reactionId); | ||
Task Delete(long repositoryId, long commentId, long reactionId); | ||
} | ||
} |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Looks like a few comment id/number parameters were not updated to
long
in the other methods.There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Fixed