summaryrefslogtreecommitdiff
path: root/src/SMAPI.Web
diff options
context:
space:
mode:
authorJesse Plamondon-Willard <Pathoschild@users.noreply.github.com>2022-01-29 20:43:45 -0500
committerJesse Plamondon-Willard <Pathoschild@users.noreply.github.com>2022-01-29 20:43:45 -0500
commit25a9f54ecfdaf6c4ad67dfb46c3f8c556d15d949 (patch)
treeb2f2eea91382c5d55bd4368e2a5d8dbdbf3e1094 /src/SMAPI.Web
parent3431f486a2ef93e86d8923c1a4651644110df81b (diff)
downloadSMAPI-25a9f54ecfdaf6c4ad67dfb46c3f8c556d15d949.tar.gz
SMAPI-25a9f54ecfdaf6c4ad67dfb46c3f8c556d15d949.tar.bz2
SMAPI-25a9f54ecfdaf6c4ad67dfb46c3f8c556d15d949.zip
fix manifest JSON schema's update key pattern
Diffstat (limited to 'src/SMAPI.Web')
-rw-r--r--src/SMAPI.Web/wwwroot/schemas/manifest.json2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/SMAPI.Web/wwwroot/schemas/manifest.json b/src/SMAPI.Web/wwwroot/schemas/manifest.json
index b6722347..7457b993 100644
--- a/src/SMAPI.Web/wwwroot/schemas/manifest.json
+++ b/src/SMAPI.Web/wwwroot/schemas/manifest.json
@@ -103,7 +103,7 @@
"type": "array",
"items": {
"type": "string",
- "pattern": "^(?i)(Chucklefish:\\d+|Nexus:\\d+|GitHub:[A-Za-z0-9_\\-]+/[A-Za-z0-9_\\-]+|ModDrop:\\d+)(?: *@ *[a-zA-Z0-9_]+ *)$",
+ "pattern": "^(?i)(Chucklefish:\\d+|Nexus:\\d+|GitHub:[A-Za-z0-9_\\-]+/[A-Za-z0-9_\\-]+|ModDrop:\\d+)(?: *@ *[a-zA-Z0-9_]+ *)?$",
"@errorMessages": {
"pattern": "Invalid update key; see https://stardewvalleywiki.com/Modding:Modder_Guide/APIs/Manifest#Update_checks for more info."
}