fall back to getConnectionType()

This commit is contained in:
Ralf Wisser
2023-11-08 13:16:24 +01:00
parent a819c99b03
commit cd760dceb2
@@ -1673,6 +1673,10 @@ public class DbConnectionDialog extends javax.swing.JDialog {
if (result.size() >= 1) {
return result.get(0);
}
ConnectionType ciType = ci.getConnectionType();
if (ciType != null) {
return ciType;
}
return ConnectionType.Development;
}