livekit-client 2.5.8 → 2.5.9

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
@@ -11148,7 +11148,7 @@ function getOSVersion(ua) {
11148
11148
  return ua.includes('mac os') ? getMatch(/\(.+?(\d+_\d+(:?_\d+)?)/, ua, 1).replace(/_/g, '.') : undefined;
11149
11149
  }
11150
11150
 
11151
- var version$1 = "2.5.8";
11151
+ var version$1 = "2.5.9";
11152
11152
 
11153
11153
  const version = version$1;
11154
11154
  const protocolVersion = 15;
@@ -19385,7 +19385,7 @@ class LocalParticipant extends Participant {
19385
19385
  while (performance.now() - startTime < 5000 && !isRejected) {
19386
19386
  if ((!name || this.name === name) && (!metadata || this.metadata === metadata) && (!attributes || Object.entries(attributes).every(_ref2 => {
19387
19387
  let [key, value] = _ref2;
19388
- return this.attributes[key] === value;
19388
+ return this.attributes[key] === value || value === '' && !this.attributes[key];
19389
19389
  }))) {
19390
19390
  this.pendingSignalRequests.delete(requestId);
19391
19391
  resolve();