Fix irregular Steam entries thanks to steam-user library update

This commit is contained in:
mtkennerly 2023-06-23 01:31:35 +08:00
parent 307fc3470c
commit 06265bff9d
No known key found for this signature in database
GPG key ID: E764BE00BE6E6408
4 changed files with 10994 additions and 306 deletions

View file

@ -12,6 +12,7 @@ interface Cli {
stats?: boolean,
duplicates?: boolean,
all?: boolean,
irregular?: boolean,
irregularPathUntagged?: boolean,
skipUntil?: string,
recent?: boolean,
@ -27,6 +28,7 @@ async function main() {
"manifest",
"stats",
"all",
"irregular",
"irregularPathUntagged",
"steam",
"missing",
@ -101,6 +103,7 @@ async function main() {
if (args.steam) {
await steamCache.refresh(
args.skipUntil,
args.irregular ?? false,
args.irregularPathUntagged ?? false,
args.limit ?? DEFAULT_GAME_LIMIT,
);