You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Some functions expect that reviewer_id is numeric (as stated in the documentation)
But if someone provides the character then they will not receive an error message despite the code not working correctly.
Possible fix:
add stopifnot( is.numeric(reviewer_id))
to rj:::add_reviewer_comment
The text was updated successfully, but these errors were encountered:
Some functions expect that
reviewer_id
is numeric (as stated in the documentation)But if someone provides the character then they will not receive an error message despite the code not working correctly.
Possible fix:
add
stopifnot( is.numeric(reviewer_id))
to
rj:::add_reviewer_comment
The text was updated successfully, but these errors were encountered: