Skip to content

Commit

Permalink
Revert "Set versand to fix error message (#187)" (#217)
Browse files Browse the repository at this point in the history
This reverts commit 840f5b7.
  • Loading branch information
dippeal committed May 4, 2024
1 parent 618546a commit 464d187
Showing 1 changed file with 4 additions and 1 deletion.
5 changes: 4 additions & 1 deletion src/de/jost_net/JVerein/gui/control/MailControl.java
Expand Up @@ -552,11 +552,14 @@ 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 464d187

Please sign in to comment.