You are reading a single comment by @Gordon and its replies. Click here to read the full conversation.
  • Perfect - thanks!

    I just tracked this down, and it's: "&LastMove="+safeGetTime()-s.lastMotion.

    This is like "Foo"+2-1 - the precedence of operators means that you're actually doing:

    "Foo"+2-1
    "Foo2"-1
    NaN
    

    What's happening is the - tries to convert Foo2 to a float, but the string buffer it reads it into is only sized for a floating point value - and "&LastMove=1442532952000.2280273" is bigger than it's expecting so it complains.

    Still shouldn't come up with the warning though - I'll see what I can do about it.

About

Avatar for Gordon @Gordon started