Skip to content

Commit

Permalink
Merge pull request #393 from gabikliot/GPSTracker-bugfix
Browse files Browse the repository at this point in the history
Fixed a bug in GPSTracker sample.
  • Loading branch information
jthelin committed May 6, 2015
2 parents a4775f0 + 0363335 commit 808a8ff
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 808a8ff

Please sign in to comment.