Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/sn4k3/UVtools.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
Diffstat (limited to 'UVtools.Core/Objects/StringTag.cs')
-rw-r--r--UVtools.Core/Objects/StringTag.cs2
1 files changed, 1 insertions, 1 deletions
diff --git a/UVtools.Core/Objects/StringTag.cs b/UVtools.Core/Objects/StringTag.cs
index d19d686..edaea6f 100644
--- a/UVtools.Core/Objects/StringTag.cs
+++ b/UVtools.Core/Objects/StringTag.cs
@@ -30,7 +30,7 @@ namespace UVtools.Core.Objects
public string TagString
{
- get => Tag.ToString();
+ get => Tag?.ToString();
set => Tag = value;
}