remove extra goto

I shouldn't have put that there in the first place, was trying to get it so you could just call functions and #Include flag.ahk in your own script. Figured that wasn't a good idea
This commit is contained in:
David Daily 2021-01-26 11:13:02 -06:00
parent 60f7bbbbd5
commit e3722ec509
1 changed files with 1 additions and 2 deletions

View File

@ -139,7 +139,7 @@ translate(url, data, length)
If (length = 0)
{
req(url, data)
Goto, tEnd
ExitApp
} Else {
time_to_run := length * 1000
start_time := A_TickCount
@ -154,7 +154,6 @@ translate(url, data, length)
Sleep, (length * 1000)
off()
}
tEnd:
}
off()