mirror of
https://github.com/jwetzell/QControlKit.git
synced 2026-08-06 07:53:53 +00:00
Treat PlaybackPosition Reply as an Update
This commit is contained in:
@@ -83,6 +83,11 @@ namespace QSharp
|
||||
string property = message.AddressParts.Last();
|
||||
if (property == null)
|
||||
return;
|
||||
if (property == QOSCKey.PlaybackPositionId)
|
||||
{
|
||||
OnCueListChangedPlaybackPosition(message.cueID, data.ToString());
|
||||
return;
|
||||
}
|
||||
//create object manually since single value replies don't have dictionaries
|
||||
JObject properties = new JObject();
|
||||
properties.Add(property, data);
|
||||
|
||||
Reference in New Issue
Block a user