From 1e4022680a341ceb8c032d79b60aacb161e7fc86 Mon Sep 17 00:00:00 2001 From: Omar Roth Date: Sat, 25 Jul 2020 12:57:15 -0400 Subject: [PATCH] Fix playlists with one video --- src/invidious/playlists.cr | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/invidious/playlists.cr b/src/invidious/playlists.cr index a1b7715d..d3064665 100644 --- a/src/invidious/playlists.cr +++ b/src/invidious/playlists.cr @@ -375,9 +375,9 @@ def fetch_playlist(plid, locale) text = stat["runs"]?.try &.as_a.map(&.["text"].as_s).join("") || stat["simpleText"]?.try &.as_s next if !text - if text.includes? "videos" + if text.includes? "video" video_count = text.gsub(/\D/, "").to_i? || 0 - elsif text.includes? "views" + elsif text.includes? "view" views = text.gsub(/\D/, "").to_i64? || 0_i64 else updated = decode_date(text.lchop("Last updated on ").lchop("Updated "))