Skip to content

Commit

Permalink
Fixed a bug in GPSTracker sample.
Browse files Browse the repository at this point in the history
  • Loading branch information
gabikliot committed May 6, 2015
1 parent b22a8a4 commit 0363335
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -104,7 +104,7 @@ public Task SendMessage(VelocityMessage message)
{
// add a message to the send queue
messageQueue.Add(message);
if (messageQueue.Count < 25)
if (messageQueue.Count > 25)
{
// if the queue size is greater than 25, flush the queue
Flush();
Expand Down

0 comments on commit 0363335

Please sign in to comment.