Stop mixing callbacks and async procs. Your `download` async proc finishes 
before your download operation finishes because you are not awaiting the 
`download` proc. Just do this:
    
    
    await downloader.downloadFile(node.mediaLink(board, thread), downFileName)
    
    
    Run

Reply via email to