You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
{{ message }}
This repository was archived by the owner on Jun 5, 2025. It is now read-only.
fix: handle dict type trigger_string in alert deduplication for Cline (#1163)
* fix: handle dict type trigger_string in alert deduplication for Cline
The alert deduplication logic was failing when trigger_string was a dictionary,
causing an AttributeError when trying to call split() on it. Updated the code to:
- Check trigger_string type before processing
- Handle dictionary case by creating a consistent JSON string from relevant fields
- Maintain existing string handling for backwards compatibility
- Add fallback for other types by converting to string
This ensures alerts are properly deduplicated regardless of trigger_string format.
Fixes: #1162
* fix lint
---------
Co-authored-by: Yolanda Robla <[email protected]>
0 commit comments