mirror of
https://github.com/signalapp/Signal-Server
synced 2026-04-21 06:08:05 +01:00
Change inactive account age threshold from 365 to 180 days
This commit is contained in:
committed by
Jon Chambers
parent
70b54e227e
commit
a5f853c67a
@@ -68,7 +68,7 @@ public class AccountCleaner extends AccountDatabaseCrawlerListener {
|
||||
}
|
||||
|
||||
private static boolean isExpired(Account account) {
|
||||
return account.getLastSeen() + TimeUnit.DAYS.toMillis(365) < System.currentTimeMillis();
|
||||
return account.getLastSeen() + TimeUnit.DAYS.toMillis(180) < System.currentTimeMillis();
|
||||
}
|
||||
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user