Hi Justin,

That doesn't sound like what I saw when I debugged into it last week, but if 
you are right, then it sounds like you can prepare a fix for it.

-Alex

On 5/31/18, 7:36 PM, "Justin Mclean" <jus...@classsoftware.com> wrote:

    Hi,
    
    > 1. The page structure has changed and it failing to correctly parse the 
mirror URL out of the page so the URL it manufactures times out
    
    And Ive confirmed (in the debugger) that exactly what is happening. This 
code below in MirrorURLUtil.as is no longer parsing the correct mirror name out 
of the content returned.
    
    var result:String = _internetUtil.result;
                        
    _mirrorURL = (result.search("<p>") != -1) ? 
        result.substring(3, result.length - 4) : 
        result;
    
    Issue being I think that the cgi script is returning full page of HTML 
which is not what this code expects.
    
    Thanks,
    Justin

Reply via email to