Skip to content

Commit 8ec5beb

Browse files
committed
fix: Correct regex pattern to exclude matching the equal sign.
1 parent 2c8202b commit 8ec5beb

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

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

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -71,7 +71,7 @@ public class ProductConfig : Config
7171
ConfigFieldType.Text,
7272
"Use this to indicate to the EOS SDK your game version.",
7373
0, "https://dev.epicgames.com/docs/api-ref/structs/eos-initialize-options")]
74-
[RegexValidation("^[A-Za-z0-9._ !?()+=:-]+$", "Product version must consist of only the following characters: A-Z, a-z, 0-9, dot, underscore, space, exclamation mark, question mark, sign, hyphen, parenthesis, plus, minus, or colon characters.")]
74+
[RegexValidation("^[A-Za-z0-9._ !?()+:-]+$", "Product version must consist of only the following characters: A-Z, a-z, 0-9, dot, underscore, space, exclamation mark, question mark, sign, hyphen, parenthesis, plus, minus, or colon characters.")]
7575
[LengthValidation(1, EOS_INITIALIZEOPTIONS_PRODUCTVERSION_MAX_LENGTH)]
7676
public string ProductVersion;
7777

0 commit comments

Comments
 (0)