Skip to content

Commit

Permalink
made it more "cron" worthy
Browse files Browse the repository at this point in the history
  • Loading branch information
benjojo committed Dec 18, 2013
1 parent fda68af commit aad1c2a
Showing 1 changed file with 4 additions and 1 deletion.
5 changes: 4 additions & 1 deletion Code.gs
Original file line number Diff line number Diff line change
Expand Up @@ -26,7 +26,9 @@ function TagInbox() {
ContainsGeoIP = true;
}
}

if(ContainsGeoIP) {
break;
}
if(!ContainsGeoIP) {
ProcessMsg(messages[0],GlobalLables,threads[i])
}
Expand Down Expand Up @@ -55,6 +57,7 @@ function ProcessMsg(msg,GlobalLables,thread) {
GlobalLables = Res[1];
Label = Res[0];
thread.addLabel(Label)
break;
}
}
}
Expand Down

0 comments on commit aad1c2a

Please sign in to comment.