Merge pull request #148 from Spythere/development

Extended isChristmas check from 20th to 6th December
This commit is contained in:
Spythere
2025-12-05 21:28:04 +01:00
committed by GitHub
+1 -1
View File
@@ -84,7 +84,7 @@ export default defineComponent({
isChristmas() { isChristmas() {
const date = new Date(); const date = new Date();
return date.getUTCMonth() == 11 && date.getUTCDate() >= 20 && date.getUTCDate() <= 31; return date.getUTCMonth() == 11 && date.getUTCDate() >= 6 && date.getUTCDate() <= 31;
} }
} }
}); });