You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
If a CTF has a startTime or endTime before 1st January 1970 (before the UNIX epoch) all other Past and Incoming CTFs disappear because the frontend throws an error while parsing the date. Here's a bad temporary fix if anyone wants to fix this now.
in CTFNote/front/src/ctfnote/ctfs.ts, lines 108 and 109
If a CTF has a
startTime
orendTime
before 1st January 1970 (before the UNIX epoch) all otherPast
andIncoming
CTFs disappear because the frontend throws an error while parsing the date. Here's a bad temporary fix if anyone wants to fix this now.in
CTFNote/front/src/ctfnote/ctfs.ts
, lines 108 and 109should be
after that you can rebuild your docker containers with
docker-compose up --build -d
(remember to use sudo)I believe the problems stems from the
extractDate
function inctfs.ts
+ the fact thatquasar
only works with UNIX mils.Thank you in advance.
The text was updated successfully, but these errors were encountered: