Merge branch 'integration' into memory_api

This commit is contained in:
J. Nick Koston 2025-07-25 14:36:23 -10:00
commit 6b49813084
No known key found for this signature in database

View File

@ -899,17 +899,17 @@ class ProtoService {
}
bool check_authenticated_() {
#ifdef USE_API_PASSWORD
if (!this->check_connection_setup_()) {
return false;
}
#ifdef USE_API_PASSWORD
if (!this->is_authenticated()) {
this->on_unauthenticated_access();
return false;
}
return true;
#else
return true;
return this->check_connection_setup_();
#endif
}
};