Fix clearing empty chat messages (fixes #3192)

This commit is contained in:
FinnStutzenstein 2017-04-13 10:41:13 +02:00
parent b7fdbc88d6
commit d78a7f91bc
2 changed files with 4 additions and 2 deletions

View File

@ -22,7 +22,8 @@ Motions:
Core:
- No reload on logoff. OpenSlides is now a full single page
application [#3172].
- Adding support for choosing image files as logos.
- Adding support for choosing image files as logos [#3184].
- Fixing error when clearing empty chat [#3199].
Users:
- User without permission to see users can now see agenda item speakers,

View File

@ -737,7 +737,8 @@ class ChatMessageViewSet(ModelViewSet):
args.append(chatmessage.pk)
chatmessages.delete()
# Trigger autoupdate and setup response.
inform_deleted_data(*args)
if len(args) > 0:
inform_deleted_data(*args)
return Response({'detail': _('All chat messages deleted successfully.')})