mirror of
https://iceshrimp.dev/limepotato/jormungandr-bite.git
synced 2025-03-04 07:18:50 -07:00
Fix bad math
This commit is contained in:
parent
1a90496318
commit
7465e8461d
1 changed files with 1 additions and 1 deletions
|
@ -135,7 +135,7 @@ export async function createNote(
|
|||
logger.warn('Note somehow made before Activitypub was created; discarding');
|
||||
return null;
|
||||
}
|
||||
if (DateChecker < FutureCheck) {
|
||||
if (DateChecker > FutureCheck) {
|
||||
logger.warn('Note somehow made after today; discarding')
|
||||
return null;
|
||||
}
|
||||
|
|
Loading…
Add table
Reference in a new issue