Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Fix error on SendFeedback page (fixes #2951)
If some piece of information isn't available on a particular system (in my case, vram), then `systeminformation` produces a `null` value when queried. `null` satisfies the `typeof === 'object`' check, causing us to attempt to iterate over it, even though it's not iterable. Excluding `null` from such attempts keeps the SendFeedback page from crashing.
- Loading branch information