Skip to content

Commit

Permalink
Try to fix the visionOS build
Browse files Browse the repository at this point in the history
https://bugs.webkit.org/show_bug.cgi?id=274787
rdar://128876348

Unreviewed build fix after 279382@main.

* Source/WebKit/GPUProcess/media/cocoa/RemoteMediaPlayerManagerProxyCocoa.mm:
(WebKit::RemoteMediaPlayerManagerProxy::handleVideoReceiverEndpointMessage):

Canonical link: https://commits.webkit.org/279389@main
  • Loading branch information
aestes committed May 28, 2024
1 parent 33808df commit ade27f1
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -47,7 +47,7 @@
void RemoteMediaPlayerManagerProxy::handleVideoReceiverEndpointMessage(const VideoReceiverEndpointMessage& endpointMessage)
{
ASSERT(endpointMessage.mediaElementIdentifier().isValid());
if (!endpointMessage.mediaElementIdentifier().isValid)
if (!endpointMessage.mediaElementIdentifier().isValid())
return;

auto cachedEntry = m_videoReceiverEndpointCache.find(endpointMessage.mediaElementIdentifier());
Expand Down

0 comments on commit ade27f1

Please sign in to comment.