endpoint, not endpoints...

various-fixes
Alain St-Denis 2023-02-27 16:51:09 -05:00
rodzic 8d8e10b7b3
commit 9f1cc9432f
1 zmienionych plików z 1 dodań i 1 usunięć

Wyświetl plik

@ -167,7 +167,7 @@ def handle_send(
logger.debug('handle_send - length of recipients: %s', len(recipients))
# Flatten to unique recipients
# TODO supply a callable that empties "fid" in the case that public=True
unique_recipients = list(unique_everseen(recipients, key=lambda val: val['endpoints']))
unique_recipients = list(unique_everseen(recipients, key=lambda val: val['endpoint']))
logger.debug('handle_send - length of unique_recipients: %s', len(unique_recipients))
logger.debug('handle_send / unique_recipients - %s', unique_recipients)