We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent b313b6b commit c1ed19dCopy full SHA for c1ed19d
FlashpointSecurePlayer/Shared.cs
@@ -1634,6 +1634,10 @@ public string _ValueExpanded {
1634
}
1635
1636
1637
+ // this property is never stored in configurations
1638
+ // and is only for internal use. The null byte is used
1639
+ // as seperation since the backslash is not a good enough
1640
+ // delimiter for a primary key (value names can contain them)
1641
public string Name {
1642
get {
1643
string keyName = KeyName;
@@ -1647,7 +1651,7 @@ public string Name {
1647
1651
if (!String.IsNullOrEmpty(valueName)) {
1648
1652
valueName = valueName.ToUpperInvariant();
1649
1653
1650
- return keyName + "\\" + valueName;
1654
+ return keyName + "\0" + valueName;
1655
1656
1657
0 commit comments