Skip to content

Commit

Permalink
Bug fix for blank initial message content
Browse files Browse the repository at this point in the history
  • Loading branch information
Jacob Daniel Bennett committed Sep 20, 2020
1 parent 3478903 commit 6d9126b
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion api/ECNQueue.py
Original file line number Diff line number Diff line change
Expand Up @@ -259,7 +259,7 @@ def __parseSections(self) -> list:
newLinebegining = True
newLineEnd = True

while newLinebegining or newLineEnd:
while (newLinebegining or newLineEnd) and len(initialMessageContent) > 1:
# Initializes the Length of Message content each iteration of the loop
initialmessagecontentLength = len(initialMessageContent)

Expand Down

0 comments on commit 6d9126b

Please sign in to comment.