Skip to content

Commit

Permalink
Fix bug
Browse files Browse the repository at this point in the history
  • Loading branch information
mak448a committed Mar 20, 2024
1 parent 6d516eb commit 2f8840f
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/build-publish.yml
Original file line number Diff line number Diff line change
Expand Up @@ -10,4 +10,4 @@ jobs:
- uses: actions/upload-artifact@v4
with:
name: "QTCord-Windows.zip"
path: "dist/QTCord"
path: "QTCord/dist/QTCord"
2 changes: 1 addition & 1 deletion src/main.py
Original file line number Diff line number Diff line change
Expand Up @@ -120,7 +120,7 @@ def _update_text(self, messages):

for message in messages:
tags = """<p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-weight:700;">"""
new_messages += f"{tags}{message["username"]}</span>: {message["content"]}</p>" + "\n"
new_messages += f"{tags}{message['username']}</span>: {message['content']}</p>" + "\n"

if self.messages != new_messages and new_messages:
self.messages = new_messages
Expand Down

0 comments on commit 2f8840f

Please sign in to comment.