I set the new priority in the event header, but this has no effect to the Priority level on the smart client.
EventHeader eventHeader = new EventHeader()
{
ID = Guid.NewGuid(),
Class = "Operational",
Type = "DoorState",
Timestamp = DateTime.Now,
Message = analyticsEventName,
Name = [door.Name](https://door.Name),
Source = new EventSource { FQID = door.FQID, Name = [door.Name](https://door.Name) },
CustomTag = "Door info",
Priority = priority
};
New priority is 3 but it shows 1!
What could be wrong?
