Merge branch 'missing_password_ifdefs' into integration

This commit is contained in:
J. Nick Koston 2025-07-25 13:33:47 -10:00
commit 64d92fc92c
No known key found for this signature in database

View File

@ -907,8 +907,10 @@ class ProtoService {
this->on_unauthenticated_access();
return false;
}
#endif
return true;
#else
return true;
#endif
}
};