Skip to content

Commit

Permalink
Fixed stupid typos
Browse files Browse the repository at this point in the history
  • Loading branch information
shirioko committed Jun 1, 2014
1 parent 599ee6b commit a069046
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions WhatsAppApi/WhatsApp.cs
Original file line number Diff line number Diff line change
Expand Up @@ -181,7 +181,7 @@ protected FMessage getFmessageVideo(string to, byte[] videoData, VideoType vidty

public void SendMessageAudio(string to, byte[] audioData, AudioType audtype)
{
FMessage msg = this.GetFmessageAudio(to, audioData, audtype);
FMessage msg = this.getFmessageAudio(to, audioData, audtype);
if (msg != null)
{
this.SendMessage(msg);
Expand Down Expand Up @@ -231,7 +231,7 @@ protected FMessage getFmessageAudio(string to, byte[] audioData, AudioType audty
media_url = response.url,
media_duration_seconds = response.duration
};
return'msg;
return msg;
}
return null;
}
Expand Down

0 comments on commit a069046

Please sign in to comment.