bugfix: #21 fix IsSecondlife getter property

This commit is contained in:
alexiscatnip
2022-08-06 02:43:06 +08:00
committed by alexiscatnip
parent 6308797892
commit 79f92d032c
+1 -1
View File
@@ -453,7 +453,7 @@ namespace Raindrop.Netcom
public bool IsSecondlife
{
get { return (instance.Netcom.LoginOptions.Grid.Platform == "SecondLife"); }
get { return (this.LoginOptions?.Grid?.Platform == "SecondLife"); }
}
public LoginOptions LoginOptions