Donate to e Foundation | Murena handsets with /e/OS | Own a part of Murena! Learn more

Commit 52ea05c8 authored by Ian Coolidge's avatar Ian Coolidge Committed by Gerrit Code Review
Browse files

Merge "service: Fix permissions/properties argument order."

parents 9e11c898 0c21f34f
Loading
Loading
Loading
Loading
+2 −2
Original line number Diff line number Diff line
@@ -663,8 +663,8 @@ bool Server::AddBlob(const Uuid &id, const Uuid &control_id, int properties,
  // Control attributes have fixed permissions/properties.
  btstat = internal_->AddCharacteristic(
      control_id,
      kPermissionRead | kPermissionWrite,
      kPropertyRead | kPropertyWrite);
      kPropertyRead | kPropertyWrite,
      kPermissionRead | kPermissionWrite);
  internal_->api_synchronize.wait(lock);

  // Finally, associate the control attribute with the value attribute.