fix first time errors
parent
e684810ae1
commit
08f509607f
|
|
@ -272,7 +272,7 @@ namespace VELConnect
|
|||
foreach (KeyValuePair<string, string> elem in state.device.data)
|
||||
{
|
||||
string oldValue = null;
|
||||
lastState?.device.data.TryGetValue(elem.Key, out oldValue);
|
||||
lastState?.device?.data?.TryGetValue(elem.Key, out oldValue);
|
||||
if (elem.Value != oldValue)
|
||||
{
|
||||
try
|
||||
|
|
|
|||
|
|
@ -1,7 +1,7 @@
|
|||
{
|
||||
"name": "edu.uga.engr.vel.vel-connect",
|
||||
"displayName": "VEL-Connect",
|
||||
"version": "1.0.1",
|
||||
"version": "1.0.2",
|
||||
"unity": "2019.1",
|
||||
"description": "Web-based configuration for VR applications",
|
||||
"keywords": [],
|
||||
|
|
|
|||
Loading…
Reference in New Issue