From 53e728d5c2bf9f4192e3c124fa5d90012af4467f Mon Sep 17 00:00:00 2001 From: zilmar Date: Sun, 3 Jul 2016 18:31:17 +1000 Subject: [PATCH] [Upload Script] Ignore error on login --- Source/Script/upload_beta.vbs | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/Source/Script/upload_beta.vbs b/Source/Script/upload_beta.vbs index 3da02b1d5..4126fd838 100644 --- a/Source/Script/upload_beta.vbs +++ b/Source/Script/upload_beta.vbs @@ -156,7 +156,7 @@ Sub ValidateLoggedIn(IE) End Sub Sub Login(IE) - 'On Error resume next + On Error resume next Set IE2 = WScript.CreateObject("InternetExplorer.Application", "IE_") IE2.Visible = True @@ -179,7 +179,7 @@ Sub Login(IE) Dim FoundIt FoundIt = False - WScript.StdOut.WriteLine "Looking for redirect" + WScript.StdOut.WriteLine "Looking for redirect" For count = 0 to 100 Set NodeList = IE2.document.getElementsByTagName("a") WScript.StdOut.WriteLine count & ": Found " & NodeList.length & " a tags"