From e04ac53336ab2b631ecda5175eaf9aa03d983f92 Mon Sep 17 00:00:00 2001 From: Omar Roth Date: Mon, 13 Aug 2018 10:57:45 -0500 Subject: [PATCH] Remove non-functional 'ad_slots' --- src/invidious.cr | 18 ------------------ src/invidious/views/watch.ecr | 7 ------- 2 files changed, 25 deletions(-) diff --git a/src/invidious.cr b/src/invidious.cr index 2c1c98bc..07f135d0 100644 --- a/src/invidious.cr +++ b/src/invidious.cr @@ -264,29 +264,11 @@ get "/watch" do |env| rating = video.info["avg_rating"].to_f64 engagement = ((video.dislikes.to_f + video.likes.to_f)/video.views * 100) - if video.info["ad_slots"]? - ad_slots = video.info["ad_slots"].split(",") - ad_slots = ad_slots.join(", ") - end - if video.info["enabled_engage_types"]? engage_types = video.info["enabled_engage_types"].split(",") engage_types = engage_types.join(", ") end - if video.info["ad_tag"]? - ad_tag = URI.parse(video.info["ad_tag"]) - ad_query = HTTP::Params.parse(ad_tag.query.not_nil!) - - ad_category = URI.unescape(ad_query["iu"]) - ad_category = ad_category.lstrip("/4061/").split(".")[-1] - - ad_query = HTTP::Params.parse(ad_query["scp"]) - - k2 = URI.unescape(ad_query["k2"]).split(",") - k2 = k2.join(", ") - end - templated "watch" end diff --git a/src/invidious/views/watch.ecr b/src/invidious/views/watch.ecr index f33ccee3..6296f886 100644 --- a/src/invidious/views/watch.ecr +++ b/src/invidious/views/watch.ecr @@ -211,16 +211,9 @@ get_youtube_comments(); <% end %>

<% end %> - <% if ad_slots %> -

Ad Slots: <%= ad_slots %>

- <% end %> <% if engage_types %>

Engage Types: <%= engage_types %>

<% end %> - <% if ad_tag %> -

Ad Category: <%= ad_category %>

-

Ad Tags(?): <%= k2 %>

- <% end %>