Skip to content

Commit

Permalink
Fix AbrechnungSEPAControl.java (#131)
Browse files Browse the repository at this point in the history
Fehler bei der SEPA Versionsabfrage.

Bei ESC und Abbruch Button erscheint eine Fehlermeldung.
Beim Schliesen über das Schliesen Icon wird mit der Ausgabe weiter gemacht und nicht Abgebrochen.
Der Fix behebt beides.
  • Loading branch information
JohannMaierhofer authored Jan 26, 2024
1 parent f5d398e commit 35e09e5
Showing 1 changed file with 9 additions and 0 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -50,6 +50,7 @@
import de.willuhn.jameica.hbci.gui.dialogs.PainVersionDialog;
import de.willuhn.jameica.system.Application;
import de.willuhn.jameica.system.BackgroundTask;
import de.willuhn.jameica.system.OperationCanceledException;
import de.willuhn.jameica.system.Settings;
import de.willuhn.logging.Logger;
import de.willuhn.util.ApplicationException;
Expand Down Expand Up @@ -368,6 +369,14 @@ private void doAbrechnung() throws ApplicationException, RemoteException
{
PainVersionDialog d = new PainVersionDialog(org.kapott.hbci.sepa.SepaVersion.Type.PAIN_008);
sepaVersion = (SepaVersion) d.open();
if (sepaVersion == null)
{
return;
}
}
catch (OperationCanceledException oce)
{
throw oce;
}
catch (Exception e)
{
Expand Down

0 comments on commit 35e09e5

Please sign in to comment.