Use topic_name() helper in more places.

This commit is contained in:
Steve Howell
2018-11-01 15:18:20 +00:00
committed by Tim Abbott
parent 55afadc286
commit 2fd0cfe708
5 changed files with 6 additions and 6 deletions

View File

@@ -104,7 +104,7 @@ def create_missed_message_address(user_profile: UserProfile, message: Message) -
data = {
'user_profile_id': user_profile.id,
'recipient_id': recipient_id,
'subject': message.subject.encode('utf-8'),
'subject': message.topic_name().encode('utf-8'),
}
while True: