1
0
Fork 1
mirror of https://github.com/pixelfed/pixelfed.git synced 2024-12-22 07:42:41 +00:00
This commit is contained in:
Daniel Supernault 2024-11-11 21:49:41 -07:00
parent bdc395dc8e
commit cf38a508ca
No known key found for this signature in database
GPG key ID: 23740873EE6F76A1

View file

@ -307,6 +307,7 @@ class Helpers
$isMoreThanTenYearsOld = $date->lt($tenYearsAgo);
$tomorrow = $now->copy()->addDay();
$isMoreThanOneDayFuture = $date->gt($tomorrow);
return ! ($isMoreThanTenYearsOld || $isMoreThanOneDayFuture);
} catch (\Exception $e) {
return false;