From 7bd483622f85d9073b9dc938ab9756915590f12d Mon Sep 17 00:00:00 2001 From: Michi Date: Sun, 3 Jul 2022 18:13:10 +0200 Subject: [PATCH] Update countdown.html --- countdown.html | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/countdown.html b/countdown.html index 0ab92c6..e1eafb1 100644 --- a/countdown.html +++ b/countdown.html @@ -118,7 +118,7 @@ function countdown(){ // Thanks to https://youtu.be/uoMkz1cXOcY - var releaseDate = new Date('July 9, 2022 12:00:00'); + var releaseDate = new Date('July 30, 2022 12:00:00'); var currentDate = new Date(); var difference = releaseDate.getTime() - currentDate.getTime(); var days = Math.floor(difference / (1000 * 60 * 60 * 24));