Skip to content
This repository has been archived by the owner on Jul 16, 2020. It is now read-only.

Commit

Permalink
fix: resolve issue where custom scenes created through a "createScene…
Browse files Browse the repository at this point in the history
…s" message via the Mixer API SendInteractiveMessage would not be properly processed
  • Loading branch information
Funomena-Michael committed Sep 4, 2018
1 parent 539573d commit 80c711b
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -1758,7 +1758,7 @@ private void HandleSceneCreate(JsonReader jsonReader)
string keyValue = jsonReader.Value.ToString();
if (keyValue == WS_MESSAGE_KEY_SCENES)
{
_scenes.Add(ReadScene(jsonReader));
_scenes.AddRange(ReadScenes(jsonReader));
}
}
}
Expand Down

0 comments on commit 80c711b

Please sign in to comment.