You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Kandroid v0.5.7 refuses to connect to Kanboard v1.1.0 saying the minimum required version is 1.0.38
I think the bug is in LoginActivity.java (lines 242-244), that expects all 3 components of the server version to be greater than or equal to 1, 0 and 38, respectively. Note that the third component of the actual server version (1.1.0) is less than the expected 38 and so gets rejected.
Hi
Has anybody Being able to fix this? I am having the same problem.
I am using this version:
Versión de la aplicación: v1.2.32
Versión de PHP: 8.2.8
PHP SAPI: fpm-fcgi
Cliente HTTP: cURL
Versión del sistema operativo: Linux 6.2.0-1009-aws
Controlador de la base de datos mysql
Versión de base de datos: 8.0.3-rc-log
Navegador: Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/116.0.0.0 Safari/537.36
Kandroid v0.5.7 refuses to connect to Kanboard v1.1.0 saying the minimum required version is 1.0.38
I think the bug is in LoginActivity.java (lines 242-244), that expects all 3 components of the server version to be greater than or equal to 1, 0 and 38, respectively. Note that the third component of the actual server version (1.1.0) is less than the expected 38 and so gets rejected.
The correct check would be:
} else if (version[0] > Constants.minKanboardVersion[0] ||
version[0] = Constants.minKanboardVersion[0] &&
(version[1] > Constants.minKanboardVersion[1] ||
version[1] = Constants.minKanboardVersion[1] &&
version[2] >= Constants.minKanboardVersion[2])) {
I'm not sure about the formatting, sorry.
The text was updated successfully, but these errors were encountered: