mirror of
				https://codeberg.org/ashley/poke
				synced 2025-07-17 16:52:11 +00:00 
			
		
		
		
	add try catch :p
This commit is contained in:
		
							parent
							
								
									ab42b34418
								
							
						
					
					
						commit
						a7c3d42b78
					
				| @ -128,35 +128,39 @@ module.exports = function (app, config, renderTemplate) { | ||||
|     const h = await video.text(); | ||||
|     const k = JSON.parse(modules.toJson(h)); | ||||
|     if (!v) res.redirect("/"); | ||||
|     if ("Formats" in fetching.video.Player) { | ||||
|       //video
 | ||||
|       const j = fetching.video.Player.Formats.Format, | ||||
|         j_ = Array.isArray(j) ? j[j.length - 1] : j; | ||||
|       let url; | ||||
|       if (j_.URL != undefined) url = j_.URL; | ||||
|     try { | ||||
|       if ("Formats" in fetching.video.Player) { | ||||
|         //video
 | ||||
|         const j = fetching.video.Player.Formats.Format, | ||||
|           j_ = Array.isArray(j) ? j[j.length - 1] : j; | ||||
|         let url; | ||||
|         if (j_.URL != undefined) url = j_.URL; | ||||
| 
 | ||||
|       //checks if json exists
 | ||||
|       if (json) { | ||||
|         //checks if title exists in the json object
 | ||||
|         //checks if json exists
 | ||||
|         if (json) { | ||||
|           //checks if title exists in the json object
 | ||||
| 
 | ||||
|         if ("Title" in json) { | ||||
|           // json response
 | ||||
|           const re = { | ||||
|             main: { | ||||
|               video_id: sha384(json.id), | ||||
|               channel: sha384(json.Channel.Name), | ||||
|               title: sha384(json.Title), | ||||
|               date: sha384(btoa(Date.now()).toString()), | ||||
|             }, | ||||
|             video: { | ||||
|               title: sha384(json.Title), | ||||
|               url: sha384(url), | ||||
|             }, | ||||
|           }; | ||||
|           if ("Title" in json) { | ||||
|             // json response
 | ||||
|             const re = { | ||||
|               main: { | ||||
|                 video_id: sha384(json.id), | ||||
|                 channel: sha384(json.Channel.Name), | ||||
|                 title: sha384(json.Title), | ||||
|                 date: sha384(btoa(Date.now()).toString()), | ||||
|               }, | ||||
|               video: { | ||||
|                 title: sha384(json.Title), | ||||
|                 url: sha384(url), | ||||
|               }, | ||||
|             }; | ||||
| 
 | ||||
|           res.json(re); | ||||
|             res.json(re); | ||||
|           } | ||||
|         } | ||||
|       } | ||||
|     } catch { | ||||
|       res.json("error in parsing"); | ||||
|     } | ||||
|   }); | ||||
| 
 | ||||
|  | ||||
		Loading…
	
	
			
			x
			
			
		
	
		Reference in New Issue
	
	Block a user
	 Ashley
						Ashley