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
Email (or usersearch more generally) to teachers of a specific student does not work due to changes in #3445. The traceback is as follows.
esp/esp/users/controllers/usersearch.py", line 234, in query_from_criteria
if criteria.get('target_user', '').strip():
AttributeError: 'ESPUser' object has no attribute 'strip'
Fix is to identify what the previous code (criteria['target_user']) was checking for and restore that behavior, ideally while maintaining the performance of the new criteria.get() call.
Reported by Stanford
The text was updated successfully, but these errors were encountered:
Email (or usersearch more generally) to teachers of a specific student does not work due to changes in #3445. The traceback is as follows.
Fix is to identify what the previous code (
criteria['target_user']
) was checking for and restore that behavior, ideally while maintaining the performance of the newcriteria.get()
call.Reported by Stanford
The text was updated successfully, but these errors were encountered: