From 1fb4afb503121a4b36fd6c17a64f972b46f4701b Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Samuel=20=C5=A0tancl?= Date: Fri, 7 Jan 2022 17:45:22 +0100 Subject: [PATCH] 2022 --- app/Console/Commands/WeeklyThread.php | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/app/Console/Commands/WeeklyThread.php b/app/Console/Commands/WeeklyThread.php index f02b7c2..fe1214b 100644 --- a/app/Console/Commands/WeeklyThread.php +++ b/app/Console/Commands/WeeklyThread.php @@ -25,7 +25,7 @@ class WeeklyThread extends Command // 1448992205138444334 $id = $this->extractID($url); - $slug = 'weekly-thread-2021-' . $week; + $slug = 'weekly-thread-2022-' . $week; Tip::where('thread_slug', $slug)->delete(); Thread::where('slug', $slug)->delete(); @@ -35,7 +35,7 @@ class WeeklyThread extends Command /** @var Thread $thread */ $thread = Thread::create([ 'slug' => $slug, - 'title' => "Weekly thread #{$week} of 2021", + 'title' => "Weekly thread #{$week} of 2022", 'tweet_id' => $id, 'author_username' => 'archtechx', 'content' => $tweet->text,