Fix irregular Steam entries thanks to steam-user library update
This commit is contained in:
parent
307fc3470c
commit
06265bff9d
4 changed files with 10994 additions and 306 deletions
|
@ -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,
|
||||
);
|
||||
|
|
Reference in a new issue