Skip to content

Commit

Permalink
Doh!
Browse files Browse the repository at this point in the history
  • Loading branch information
abjerner committed Feb 28, 2019
1 parent d671088 commit df92566
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -99,7 +99,7 @@ public SocialHttpResponse PostStatusMessage(string status, long replyTo) {
/// </see>
public SocialHttpResponse PostStatusMessage(TwitterPostStatusMessageOptions options) {
if (options == null) throw new ArgumentNullException(nameof(options));
if (!String.IsNullOrWhiteSpace(options.Status)) throw new PropertyNotSetException(nameof(options.Status));
if (String.IsNullOrWhiteSpace(options.Status)) throw new PropertyNotSetException(nameof(options.Status));
return Client.DoHttpPostRequest("https://api.twitter.com/1.1/statuses/update.json", options);
}

Expand Down

0 comments on commit df92566

Please sign in to comment.