Omkar008 commited on
Commit
737d47e
1 Parent(s): bee1bb7

Update controllers/ws_controller.py

Browse files
Files changed (1) hide show
  1. controllers/ws_controller.py +1 -1
controllers/ws_controller.py CHANGED
@@ -206,7 +206,7 @@ async def websocket_main(code: str, websocket: WebSocket,brand_name: Optional[s
206
  async def send_message_in_chunks(websocket: WebSocket, message_json: dict, chunk_size: int):
207
  attchment_len = 0
208
  body_len = 0
209
- if message_json['attachments'] not None :
210
  for attch in message_json['attachments']:
211
  attacment_len = attch['attachment_len']
212
  body_len = attch['body_len']
 
206
  async def send_message_in_chunks(websocket: WebSocket, message_json: dict, chunk_size: int):
207
  attchment_len = 0
208
  body_len = 0
209
+ if message_json['attachments'] is not None :
210
  for attch in message_json['attachments']:
211
  attacment_len = attch['attachment_len']
212
  body_len = attch['body_len']