Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
1 change: 1 addition & 0 deletions changelog/next.md
Original file line number Diff line number Diff line change
Expand Up @@ -15,3 +15,4 @@
- Fixed build issues preventing cross compilation from working.
- Fixed dekstop entries with lower priority than a hidden entry not being hidden.
- Fixed desktop entry keys with mismatched modifier or country not being discarded.
- Fixed greetd hanging when authenticating with a fingerprint.
4 changes: 4 additions & 0 deletions src/services/greetd/connection.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -225,6 +225,10 @@ void GreetdConnection::onSocketReady() {

this->mResponseRequired = responseRequired;
emit this->authMessage(message, error, responseRequired, echoResponse);

if (!responseRequired) {
this->sendRequest({{"type", "post_auth_message_response"}});
}
} else goto unexpected;

return;
Expand Down