ADD: new values to checkDeleay()

This commit is contained in:
Christoph Johannes Kleine 2025-07-17 14:45:17 +02:00
parent 15b9ce4c02
commit 7704ddfb04
No known key found for this signature in database
GPG key ID: FF75D4DF473093E5

View file

@ -403,8 +403,11 @@ uint32_t GxsGroupFrameDialog::checkDelay(uint32_t time_in_secs)
return 90 * 86400;
if(time_in_secs <= 250 * 86400)
return 180 * 86400;
return 365 * 86400;
if(time_in_secs <= 400 * 86400)
return 365 * 86400;
if(time_in_secs <= 1200 * 86400)
return 1095 * 86400;
return 1825 * 86400;
}
void GxsGroupFrameDialog::groupTreeCustomPopupMenu(QPoint point)