We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent c213a5f commit dfaaf69Copy full SHA for dfaaf69
src/main/java/com/odoojava/api/Session.java
@@ -183,8 +183,8 @@ public void startSession() throws Exception {
183
184
private void checkVersionCompatibility() throws XmlRpcException, OdooApiException {
185
186
- if (this.getServerVersion().getMajor() < 8 || this.getServerVersion().getMajor() > 14) {
187
- throw new OdooApiException("Only Odoo Version from v8.x to 14.x are maintained. "
+ if (this.getServerVersion().getMajor() < 8 || this.getServerVersion().getMajor() > 15) {
+ throw new OdooApiException("Only Odoo Version from v8.x to 15.x are maintained. "
188
+ "Please choose another version of the library");
189
}
190
0 commit comments