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

Commit

Permalink
Merge pull request #105 from Funomena-Michael/master
Browse files Browse the repository at this point in the history
fix: resolve issue where a "createScenes" message would not properly be handled
  • Loading branch information
payzer committed Sep 4, 2018
2 parents e26da85 + 80c711b commit 2e728a5
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -1766,7 +1766,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 2e728a5

Please sign in to comment.