Skip to content

Commit

Permalink
extend expiry date
Browse files Browse the repository at this point in the history
  • Loading branch information
wizicer committed Mar 15, 2024
1 parent d93c89a commit 96707c2
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions src/components/Search.vue
Original file line number Diff line number Diff line change
Expand Up @@ -382,9 +382,9 @@ export default class Search extends Vue {
const now = new Date().getTime();
if (expsec > now) return "OK";
// Temporarily extend expiry to 2024-03-14
// UTC: Mar 14 2024 00:00:00
if (now < 1710374400000) return "Extended";
// Temporarily extend expiry to 2024-04-15
// UTC: Apr 15 2024 00:00:00
if (now < 1713139200000) return "Extended";
if (expsec < now + 90 * 24 * 60 * 60 * 1000) return "Grace Period";
return "Releasing";
}
Expand Down

0 comments on commit 96707c2

Please sign in to comment.