File: 0006-Disable-version-check.patch

package info (click to toggle)
hibiscus 2.12.1%2Bdfsg-1
  • links: PTS, VCS
  • area: main
  • in suites: sid
  • size: 16,392 kB
  • sloc: java: 85,488; sql: 1,308; xml: 306; makefile: 2
file content (21 lines) | stat: -rw-r--r-- 1,108 bytes parent folder | download
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
From: Jochen Sprickerhof <git@jochen.sprickerhof.de>
Date: Sat, 28 Sep 2019 15:55:09 +0200
Subject: Disable version check

---
 src/de/willuhn/jameica/hbci/HBCI.java | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/src/de/willuhn/jameica/hbci/HBCI.java b/src/de/willuhn/jameica/hbci/HBCI.java
index c7f1e75..1eb9d38 100644
--- a/src/de/willuhn/jameica/hbci/HBCI.java
+++ b/src/de/willuhn/jameica/hbci/HBCI.java
@@ -308,7 +308,7 @@ public class HBCI extends AbstractPlugin
       Feature.PINTAN_DECOUPLED_REFRESH.setEnabled(false); // Wir machen kein automatisches Refresh. Dafr haben wir ja den PushTAN-Dialog
       
       final String version = HBCIUtils.version();
-      if (version != null && !HBCI4JAVA_VERSION.equals(version))
+      if (false && version != null && !HBCI4JAVA_VERSION.equals(version))
       {
         final String s = "Die Version der Systembibliothek HBCI4Java \"{0}\" stimmt nicht mit der erwarteten Version \"{1}\" berein. " +
                          "Das wird zu unerwarteten Fehlern fhren. Bitte kopiere eine neuere Version von Hibiscus nicht ber " +