Skip to content

Commit 0fa9f9b

Browse files
committed
fix: Update the IsEmpty property to utilize the ToString method of Guid more correctly.
1 parent e4d74e5 commit 0fa9f9b

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

com.playeveryware.eos/Runtime/Core/Config/SandboxId.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -83,7 +83,7 @@ public readonly bool IsEmpty
8383
get
8484
{
8585
return String.IsNullOrEmpty(_value) ||
86-
Guid.Empty.ToString().Replace("-", "").Equals(_value);
86+
Guid.Empty.ToString("N").Equals(_value);
8787
}
8888
}
8989

0 commit comments

Comments
 (0)