cito-mcp 0.3.7 → 0.3.8
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/dist/tools/normalize.js +1 -1
- package/package.json +1 -1
package/dist/tools/normalize.js
CHANGED
|
@@ -280,7 +280,7 @@ export function normalizeMatch(game, row, forcedStatus) {
|
|
|
280
280
|
else if (/complete|finished|ended|final|closed|done|official|result/.test(statusRaw) || hasResult) {
|
|
281
281
|
status = 'completed';
|
|
282
282
|
}
|
|
283
|
-
else if (/upcoming|scheduled|
|
|
283
|
+
else if (/upcoming|scheduled|not_?started|unstarted|pending|soon|booked|confirmed|announced|tbd/.test(statusRaw) ||
|
|
284
284
|
(game === 'ufc' && !hasResult && (startTime || statusRaw === '' || statusRaw === 'unknown'))) {
|
|
285
285
|
// UFC bouts often omit status or use sparse values; default upcoming when no result yet.
|
|
286
286
|
if (hasResult)
|
package/package.json
CHANGED