mirror of
				https://codeberg.org/ashley/poke
				synced 2025-07-17 16:52:11 +00:00 
			
		
		
		
	fix some issues on the channel page
This commit is contained in:
		
							parent
							
								
									2f7ecbd37b
								
							
						
					
					
						commit
						005ba9f0bb
					
				
							
								
								
									
										12
									
								
								server.js
									
									
									
									
									
								
							
							
						
						
									
										12
									
								
								server.js
									
									
									
									
									
								
							| @ -431,8 +431,6 @@ app.get("/search", async (req, res) => { | ||||
| app.get("/channel/", async (req, res) => { | ||||
|   const ID = req.query.id; | ||||
|   const tab = req.query.tab; | ||||
| 
 | ||||
| 
 | ||||
|    | ||||
|   // about
 | ||||
|   const bout = await fetch(config.tubeApi + `channel?id=${ID}&tab=about`); | ||||
| @ -455,18 +453,26 @@ app.get("/channel/", async (req, res) => { | ||||
|   } | ||||
|    | ||||
|   const { Subscribers: subscribers } = k.Channel.Metadata; | ||||
|   const description =  k.Channel.Contents.ItemSection.About.Description | ||||
|    | ||||
|     var d = description.toString().replace(/\n/g, " <br> ") | ||||
|     if(d === "[object Object]"){ | ||||
|       var d = "" | ||||
|     } | ||||
|     | ||||
|   renderTemplate(res, req, "channel.ejs", { | ||||
|     ID: ID, | ||||
|     tab: tab, | ||||
|     j: k, | ||||
|     tj: tj, | ||||
|     wiki: w, | ||||
|     isMobile: req.useragent.isMobile, | ||||
|     about: k.Channel.Contents.ItemSection.About, | ||||
|     subs: | ||||
|       typeof subscribers === "string" | ||||
|         ? subscribers.replace("subscribers", "") | ||||
|         : "Private", | ||||
|     desc: k.Channel.Contents.ItemSection.About.Description.replace(/\n/g, " <br> "), | ||||
|     desc: d | ||||
|   }); | ||||
| }); | ||||
| 
 | ||||
|  | ||||
		Loading…
	
	
			
			x
			
			
		
	
		Reference in New Issue
	
	Block a user
	 Ashley
						Ashley