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