Skip to content
New issue

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

[CLOSED] Avoid adding duplicates to the list of welcome projects, and ... #2666

Open
core-ai-bot opened this issue Aug 29, 2021 · 2 comments

Comments

@core-ai-bot
Copy link
Member

Issue by njx
Friday Feb 08, 2013 at 04:56 GMT
Originally opened as adobe/brackets#2812


...clean up existing duplicates

Fixes #2809.

In the part of the code where we were explicitly writing out a new set of welcome folders, we were properly detecting duplicates. But there was another bit of code in isWelcomeProjectPath() that was accessing the welcome folder array and pushing the current welcome path onto it temporarily, just for the purposes of including it in the list so that the indexOf() on the next line would also check it. This seemed safe (although not really all that smart anyway) since we didn't call setValue() again. However, it turns out that array/object values returned from the PreferenceStorage are actually live objects cached in the preference structure, so if you modify them, the new values will eventually get saved out even without an explicit setValue(). Not sure if this is a bug or a feature.

In any case, the fix is simple (don't push the extra value on, just check it separately). I also added a one-time check to clean up existing duplicates due to the original bug--seems important since people might have tons of garbage in their prefs file.


njx included the following code: https://github.com/adobe/brackets/pull/2812/commits

@core-ai-bot
Copy link
Member Author

Comment by gruehle
Friday Feb 08, 2013 at 17:38 GMT


Reviewing

@core-ai-bot
Copy link
Member Author

Comment by gruehle
Friday Feb 08, 2013 at 17:58 GMT


Initial review complete.

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

No branches or pull requests

1 participant