Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
api: correct
remove_deprecated_app
to not remove in unexpected circ…
…umstances previously Steam was only supposed to be removed for 32bit, however the detection was flawed and it hit the else case even on 64bit and the folder got removed. this resulted in unexpected steam updates being prompted on new installs and anytime the runonce that calls this function ran
- Loading branch information
715e105
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
@theofficialgman, this commit broke the function. It returns from the function before uninstalling the app.
715e105
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
And I think line 810 should be removed.
715e105
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
no I don't think so. it only returns if the app is not marked as installed already. note that all of this is under one if statement, so the latter elif statements only run if the previous evaluated to false.