fix first time errors

dev
kjjohnsen 2022-11-16 01:07:31 -05:00
parent e684810ae1
commit 08f509607f
2 changed files with 2 additions and 2 deletions

View File

@ -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

View File

@ -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": [],