summaryrefslogtreecommitdiffstats
path: root/src/helpers.cr
diff options
context:
space:
mode:
Diffstat (limited to 'src/helpers.cr')
-rw-r--r--src/helpers.cr8
1 files changed, 2 insertions, 6 deletions
diff --git a/src/helpers.cr b/src/helpers.cr
index 040f09fe..3205176f 100644
--- a/src/helpers.cr
+++ b/src/helpers.cr
@@ -224,12 +224,8 @@ def fetch_video(id, client)
raise "Could not find date published"
end
- published = published.lchop("Published ")
- published = published.lchop("Started streaming ")
- published = published.lchop("Streamed live ")
- published = published.lchop("Uploaded ")
- published = published.lchop("on ")
- published = published.lchop("Scheduled for ")
+ published = published.split(" ")
+ published = published[-3..-1].join(" ")
if !published.includes?("ago")
published = Time.parse(published, "%b %-d, %Y")
else