Skip to content

Commit

Permalink
Fix
Browse files Browse the repository at this point in the history
  • Loading branch information
Citrinate committed Sep 26, 2024
1 parent e5639d1 commit 5641c39
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion FreePackages/Data/FilterableApp.cs
Original file line number Diff line number Diff line change
Expand Up @@ -111,7 +111,7 @@ internal bool IsFree() {
internal bool IsAvailable() {
string[] availableReleaseStates = ["released", "preloadonly"];
string[] availableStates = ["eStateAvailable"];
if (!availableReleaseStates.Contains(ReleaseState) || !availableStates.Contains(State)) {
if (!availableReleaseStates.Contains(ReleaseState) && !availableStates.Contains(State)) {
// App not released yet
// Note: There's another seemingly relevant field: kv["common"]["steam_release_date"]
// steam_release_date is not checked because an app can be "released", still have a future release date, and still be redeemed
Expand Down

0 comments on commit 5641c39

Please sign in to comment.