Zoho script malfunction

Hi, I noticed that the script for accessing Zoho mail, when the number of email is 10 or more, was displaying a wrong quantity. Checking the script I solved the problem modifying the following line:

var fnd=aData.match(/inboxCount:(\d+?)/);

to this:

var fnd=aData.match(/inboxCount:(\d+)/);

Eliminting the question mark "?" in the inner parenthesis solved the problem.

 

Cheers.