Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
A ConcurrentHashMap does not work with null keys or values. This mean…
…s it will crash when you call ConcurrentHashMap.getOrDefault(null). We were calling ConcurrentHashMap.getOrDefault(userId), and userId was nullable in that context. Fixed logic to prevent ConcurrentHashMap.getOrDefault method being called with null input.
- Loading branch information