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

Commit 2e728a5

Browse files
authored
Merge pull request #105 from Funomena-Michael/master
fix: resolve issue where a "createScenes" message would not properly be handled
2 parents e26da85 + 80c711b commit 2e728a5

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

Source/InteractiveSDK/Assets/MixerInteractive/Source/Scripts/InteractivityManager.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1766,7 +1766,7 @@ private void HandleSceneCreate(JsonReader jsonReader)
17661766
string keyValue = jsonReader.Value.ToString();
17671767
if (keyValue == WS_MESSAGE_KEY_SCENES)
17681768
{
1769-
_scenes.Add(ReadScene(jsonReader));
1769+
_scenes.AddRange(ReadScenes(jsonReader));
17701770
}
17711771
}
17721772
}

0 commit comments

Comments
 (0)