1
Fork 0

Fix free trial check

This commit is contained in:
Joshua Goins 2025-05-07 17:20:03 -04:00
parent 619e64159c
commit b3143fa420

View file

@ -22,7 +22,7 @@ int main(int argc, char *argv[]) {
return; return;
} }
const bool freeTrial = req.get_param_value_count("ft") == 1; const bool freeTrial = req.get_param_value("ft") == "1";
if (freeTrial) { if (freeTrial) {
putenv("SteamAppId=312060"); putenv("SteamAppId=312060");