Add an endpoint for Bob#20
Conversation
There was a problem hiding this comment.
Code Review
This pull request adds a new recipient named "Bob Johnson" to the list of recipients in both the app and shared RecipientsRepository files. The review comments identify a critical issue where adding a duplicate name "Bob Johnson" will cause getRecipientByName to throw an IllegalArgumentException at runtime due to its use of singleOrNull. It is recommended to update getRecipientByName to use firstOrNull or return a list of matching recipients to prevent this crash.
Important
The consumer version of Gemini Code Assist on GitHub is being sunset. Starting June 18, 2026, new organization installations will be blocked, and all code review activity will officially cease on July 17, 2026.
For more details on the timeline and next steps, please review the Help Documentation.
Add a second endpoint for contact Bob to ensure this scenario is supported.