don't set persistid if it's empty to prevent duplicating entries
parent
b8bac541f5
commit
8078198640
|
|
@ -179,7 +179,11 @@ namespace VELConnect
|
|||
|
||||
protected override void ReceiveState(BinaryReader binaryReader)
|
||||
{
|
||||
persistId = binaryReader.ReadString();
|
||||
string newPersistId = binaryReader.ReadString();
|
||||
if (!string.IsNullOrEmpty(newPersistId))
|
||||
{
|
||||
persistId = newPersistId;
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
|
|
@ -1,7 +1,7 @@
|
|||
{
|
||||
"name": "edu.uga.engr.vel.vel-connect",
|
||||
"displayName": "VEL-Connect",
|
||||
"version": "5.0.4",
|
||||
"version": "5.0.5",
|
||||
"unity": "2019.1",
|
||||
"description": "Web-based configuration for VR applications",
|
||||
"keywords": [],
|
||||
|
|
|
|||
Loading…
Reference in New Issue