http instead of https
This commit is contained in:
		
							parent
							
								
									b29c5dcd48
								
							
						
					
					
						commit
						bbe9844828
					
				| 
						 | 
					@ -30,7 +30,7 @@ async function downloadVideo(url, ws, id) {
 | 
				
			||||||
        const alreadyPrecentages = []
 | 
					        const alreadyPrecentages = []
 | 
				
			||||||
 | 
					
 | 
				
			||||||
        const target = Array.isArray(downloadJson.url) ? downloadJson.url[0] : downloadJson.url
 | 
					        const target = Array.isArray(downloadJson.url) ? downloadJson.url[0] : downloadJson.url
 | 
				
			||||||
        const download = wget.download(target, `./videos/${id}.mp4`)
 | 
					        const download = wget.download(target.replace('https://', 'http://'), `./videos/${id}.mp4`)
 | 
				
			||||||
        
 | 
					        
 | 
				
			||||||
        download.on('start', fileSize => {
 | 
					        download.on('start', fileSize => {
 | 
				
			||||||
            size = fileSize
 | 
					            size = fileSize
 | 
				
			||||||
| 
						 | 
					
 | 
				
			||||||
		Loading…
	
		Reference in New Issue