obsidian-media-db-plugin
obsidian-media-db-plugin copied to clipboard
Typo error in /apis/SteamAPI.ts
- [X] The Plugin is up to date
- [X] Obsidian is up to date
Describe the bug
Using the Steam API which indicates all games as released, because of typo in source code, I think. https://github.com/mProjectsCode/obsidian-media-db-plugin/blob/9a81d708766d50f88d6d2ed9b35211d4c4903e1e/src/api/apis/SteamAPI.ts#L103
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
Can confirm this bug is due to the typo, it's supposed to mark them as unreleased. Thanks for pointing it out