Daily updates from Odoo
Sunday, August 17, 2025
1 change · 18.0
Resolved issues and error corrections
This fixes an issue where creating mail tracking entries through an external API could fail if a referenced selection value was not available. The system now continues tracking the change and shows the raw value instead, improving reliability for integrations.
Original PR description
During the mail tracking value creation in the new value and looks up using direct dictionary access which throws a KeyError when the value doesn't exist in the selection options, we can use .get() method with a fallback. after changes, the tracking will still work and display the raw value when the selection option is missing.