Skip to content

Commit

Permalink
bug fixes and more testing
Browse files Browse the repository at this point in the history
  • Loading branch information
lunamidori5 committed Nov 16, 2024
1 parent f1ed1b1 commit dba0012
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/Auto_Test_Upload.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -73,7 +73,7 @@ jobs:
runs-on: [ubuntu-latest]
needs: [Python-Lint-Full, Git-Subsystem-Manager]
strategy:
max-parallel: 5
max-parallel: 1

steps:
- uses: actions/checkout@v4
Expand Down
2 changes: 1 addition & 1 deletion Webserver/Programs/File_manager/file_manager.py
Original file line number Diff line number Diff line change
Expand Up @@ -205,7 +205,7 @@ def upload_to_midori_ai(data: bytes):
if go_on:
encrypted_data = encrypt_user_data(data, username, salt)

with open(encrypted_tar_file, "xb") as f:
with open(encrypted_tar_file, "wb") as f:
f.write = encrypted_data

try:
Expand Down

0 comments on commit dba0012

Please sign in to comment.