mirror of
				https://gitea.invidious.io/iv-org/invidious-copy-2023-06-08.git
				synced 2024-08-15 00:53:38 +00:00 
			
		
		
		
	Add fix for channel endpoint where channel has no subscribers
This commit is contained in:
		
							parent
							
								
									76d3abb5f9
								
							
						
					
					
						commit
						01a80995d3
					
				
					 1 changed files with 10 additions and 4 deletions
				
			
		| 
						 | 
					@ -2170,10 +2170,16 @@ get "/api/v1/channels/:ucid" do |env|
 | 
				
			||||||
  is_family_friendly = channel_html.xpath_node(%q(//meta[@itemprop="isFamilyFriendly"])).not_nil!["content"] == "True"
 | 
					  is_family_friendly = channel_html.xpath_node(%q(//meta[@itemprop="isFamilyFriendly"])).not_nil!["content"] == "True"
 | 
				
			||||||
  allowed_regions = channel_html.xpath_node(%q(//meta[@itemprop="regionsAllowed"])).not_nil!["content"].split(",")
 | 
					  allowed_regions = channel_html.xpath_node(%q(//meta[@itemprop="regionsAllowed"])).not_nil!["content"].split(",")
 | 
				
			||||||
 | 
					
 | 
				
			||||||
  sub_count, total_views, joined = channel_html.xpath_nodes(%q(//span[@class="about-stat"]))
 | 
					  anchor = channel_html.xpath_nodes(%q(//span[@class="about-stat"]))
 | 
				
			||||||
  sub_count = sub_count.content.rchop(" subscribers").delete(",").to_i64
 | 
					  if anchor[0].content.includes? "views"
 | 
				
			||||||
  total_views = total_views.content.rchop(" views").lchop(" • ").delete(",").to_i64
 | 
					    sub_count = 0
 | 
				
			||||||
  joined = Time.parse(joined.content.lchop("Joined "), "%b %-d, %Y", Time::Location.local)
 | 
					    total_views = anchor[0].content.delete("views •,").to_i64
 | 
				
			||||||
 | 
					    joined = Time.parse(anchor[1].content.lchop("Joined "), "%b %-d, %Y", Time::Location.local)
 | 
				
			||||||
 | 
					  else
 | 
				
			||||||
 | 
					    sub_count = anchor[0].content.delete("subscribers").delete(",").to_i64
 | 
				
			||||||
 | 
					    total_views = anchor[1].content.delete("views •,").to_i64
 | 
				
			||||||
 | 
					    joined = Time.parse(anchor[2].content.lchop("Joined "), "%b %-d, %Y", Time::Location.local)
 | 
				
			||||||
 | 
					  end
 | 
				
			||||||
 | 
					
 | 
				
			||||||
  latest_videos = PG_DB.query_all("SELECT * FROM channel_videos WHERE ucid = $1 ORDER BY published DESC LIMIT 15",
 | 
					  latest_videos = PG_DB.query_all("SELECT * FROM channel_videos WHERE ucid = $1 ORDER BY published DESC LIMIT 15",
 | 
				
			||||||
    channel.id, as: ChannelVideo)
 | 
					    channel.id, as: ChannelVideo)
 | 
				
			||||||
| 
						 | 
					
 | 
				
			||||||
		Loading…
	
	Add table
		Add a link
		
	
		Reference in a new issue