Skip to content

Commit

Permalink
Add mute request case to prevent exception (#68)
Browse files Browse the repository at this point in the history
  • Loading branch information
holofermes authored Dec 24, 2024
1 parent adee551 commit 11256dc
Showing 1 changed file with 3 additions and 0 deletions.
3 changes: 3 additions & 0 deletions Runtime/Scripts/Internal/FFIClients/FfiRequestExtensions.cs
Original file line number Diff line number Diff line change
Expand Up @@ -81,6 +81,9 @@ public static void Inject<T>(this FfiRequest ffiRequest, T request)
case RemixAndResampleRequest remixAndResampleRequest:
ffiRequest.RemixAndResample = remixAndResampleRequest;
break;
case LocalTrackMuteRequest localTrackMuteRequest:
ffiRequest.LocalTrackMute = localTrackMuteRequest;
break;
case E2eeRequest e2EeRequest:
ffiRequest.E2Ee = e2EeRequest;
break;
Expand Down

0 comments on commit 11256dc

Please sign in to comment.