Skip to content

Commit

Permalink
Set versand to fix error message (#187)
Browse files Browse the repository at this point in the history
Co-authored-by: dippeal <info@dippe-it.de>
  • Loading branch information
dippeal and dippeal committed Mar 17, 2024
1 parent f2550d4 commit 840f5b7
Showing 1 changed file with 1 addition and 4 deletions.
5 changes: 1 addition & 4 deletions src/de/jost_net/JVerein/gui/control/MailControl.java
Expand Up @@ -552,14 +552,11 @@ public void handleStore(boolean mitversand)
{
m.setVersand(new Timestamp(new Date().getTime()));
}
else
{
m.setVersand(null);
}
m.store();
for (MailEmpfaenger me : getMail().getEmpfaenger())
{
me.setMail(m);
me.setVersand(m.getVersand());
me.store();
}
DBIterator<MailEmpfaenger> it = Einstellungen.getDBService()
Expand Down

0 comments on commit 840f5b7

Please sign in to comment.