We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Describe the bug
Using the Steam API which indicates all games as released, because of typo in source code, I think.
obsidian-media-db-plugin/src/api/apis/SteamAPI.ts
Line 103 in 9a81d70
released: !result.release_date?.comming_soon,
should be
released: !result.release_date?.coming_soon,
as in steam API :
Unfortunately, I can't PR right now so I'm referencing an issue so it's written somewhere
The text was updated successfully, but these errors were encountered:
Fixed typo bug
937e606
Noticed by double-hash in mProjectsCode#179
Fixed steam typo bug
49a2d3e
Noticed by @double-hash in mProjectsCode#179
Can confirm this bug is due to the typo, it's supposed to mark them as unreleased. Thanks for pointing it out
Sorry, something went wrong.
No branches or pull requests
Describe the bug
Using the Steam API which indicates all games as released, because of typo in source code, I think.
obsidian-media-db-plugin/src/api/apis/SteamAPI.ts
Line 103 in 9a81d70
released: !result.release_date?.comming_soon,
should be
released: !result.release_date?.coming_soon,
as in steam API :

Unfortunately, I can't PR right now so I'm referencing an issue so it's written somewhere
The text was updated successfully, but these errors were encountered: