[AB-xxx] changing timestamp used for updated in modmail reminder job

This commit is contained in:
Sheldan
2026-05-02 13:58:51 +02:00
parent a69d4c25ff
commit 2ae2542c71

View File

@@ -105,6 +105,9 @@ public class ModmailReminderListener implements ModmailThreadActionListener {
}
private static Instant getUpdatedOrCrated(ModMailThread thread) {
if(thread.getLastUpdated() != null) {
return thread.getLastUpdated();
}
if(thread.getUpdated() != null) {
return thread.getUpdated();
}