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
if (client.connect() && client.version() >= mMinSupportedServer) {
if (client.connect() && (version_ok (client.version() , mMinSupportedServer))) {
if (client.version() < mMinSupportedServer) {
if (!version_ok (client.version() , mMinSupportedServer)) {
The text was updated successfully, but these errors were encountered:
jleima
changed the title
client.version() and mMinSupportedServer do not work for Client 2.11 & Min 2.3
client.version() < mMinSupportedServer do not work for Client 2.11 & Min 2.3
Jun 24, 2024
jleima
changed the title
client.version() < mMinSupportedServer do not work for Client 2.11 & Min 2.3
client.version() < mMinSupportedServer does not work for Client 2.11 & Min 2.3
Jun 24, 2024
I fixed this by making all the float, strings. Everywhere there is something like
-SpeedTest::SpeedTest(float minServerVersion) :
+SpeedTest::SpeedTest(std::string minServerVersion) :
+bool version_ok (std::string client, std::string min_ver) {
+}
The text was updated successfully, but these errors were encountered: