Skip to content
This repository has been archived by the owner on Sep 9, 2024. It is now read-only.

Commit

Permalink
Remove log which could be crashing on screen share error
Browse files Browse the repository at this point in the history
- Not sure if this is the fix.
- Will test with C++SDK to see what is the source struct state when this error happens
  -> Is it empty or something
- But at this line this seems like the only place that could be crashing
  • Loading branch information
djova-dolby committed Oct 6, 2023
1 parent 1996c02 commit 822757c
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions DolbyIO/Source/Private/Subsystem/DolbyIOScreenshare.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -118,8 +118,8 @@ void UDolbyIOSubsystem::GetCurrentScreenshareSource()

void UDolbyIOSubsystem::Handle(const screen_share_error& Event)
{
DLB_UE_LOG_BASE(Warning, "Received screen_share_error event source=%s type=%s description=%s force_stopped=%d",
*ToString(Event.source), Event.type, *ToFString(Event.description), Event.force_stopped);
DLB_UE_LOG_BASE(Warning, "Received screen_share_error event type=%s description=%s force_stopped=%d",
Event.type, *ToFString(Event.description), Event.force_stopped);
if (Event.force_stopped)
{
StopScreenshare();
Expand Down

0 comments on commit 822757c

Please sign in to comment.