Skip to content

Commit

Permalink
Fix more things
Browse files Browse the repository at this point in the history
  • Loading branch information
dedmen committed Oct 1, 2022
1 parent 52fc7ee commit d8f7492
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion obs-websocket-dotnet/Events.cs
Original file line number Diff line number Diff line change
Expand Up @@ -575,7 +575,7 @@ protected void ProcessEventType(string eventType, JObject body)
break;

case nameof(InputVolumeMeters):
inputVolumeMeters?.Invoke(this, new InputVolumeMetersEventArgs(JsonConvert.DeserializeObject<List<InputVolumeMeter>>((string)body["inputs"])));
inputVolumeMeters?.Invoke(this, new InputVolumeMetersEventArgs(body["inputs"].ToObject<List<InputVolumeMeter>>()));
break;

case nameof(ReplayBufferSaved):
Expand Down

0 comments on commit d8f7492

Please sign in to comment.