registar: Revert part of 6967695c4e.

This broke the function, making all apps that wanted the list,
e.g. Deskbar, ProcessController, etc. simply not display teams.
This commit is contained in:
Augustin Cavalier 2019-07-27 22:21:04 -04:00
parent 1e8a3588cd
commit 359cf10594

View File

@ -731,7 +731,8 @@ TRoster::HandleGetAppList(BMessage* request)
status_t error = B_OK;
// get the parameters
const char* signature;
error = request->FindString("signature", &signature);
if (request->FindString("signature", &signature) != B_OK)
signature = NULL;
// reply to the request
if (error == B_OK) {