Skip to content

Commit

Permalink
Dammit Twitter, 1 *is* a boolean
Browse files Browse the repository at this point in the history
Twitter seems to require 'true', not 1, for include_email.

Closes #64
  • Loading branch information
semifor committed Nov 19, 2016
1 parent 9a544fc commit 2a6284e
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions lib/Net/Twitter/Role/API/RESTv1_1.pm
Original file line number Diff line number Diff line change
Expand Up @@ -702,8 +702,8 @@ user credentials are valid.
path => 'account/verify_credentials',
method => 'GET',
params => [qw/include_entities skip_status/],
booleans => [qw/include_entities skip_status/],
params => [qw/include_entities skip_status include_email/],
booleans => [qw/include_entities skip_status include_email/],
required => [qw//],
returns => 'ExtendedUser',
);
Expand Down

0 comments on commit 2a6284e

Please sign in to comment.