Skip to content

Commit

Permalink
remove call to downloadBackend due to ssl errors
Browse files Browse the repository at this point in the history
  • Loading branch information
TNTwise committed Aug 31, 2024
1 parent 4ba147d commit 0446c8e
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion src/Backendhandler.py
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@ def setupBackendDeps(self):
from .DownloadDeps import DownloadDependencies

downloadDependencies = DownloadDependencies()
downloadDependencies.downloadBackend(version)
#downloadDependencies.downloadBackend(version)
if not checkIfDeps():
# Dont flip these due to shitty code!
downloadDependencies.downloadFFMpeg()
Expand Down
4 changes: 2 additions & 2 deletions src/DownloadDeps.py
Original file line number Diff line number Diff line change
Expand Up @@ -74,8 +74,8 @@ def downloadBackend(self, tag):
moved_backed_folder = os.path.join(currentDirectory(), "backend")

printAndLog("Downloading backend")
urllib.request.urlretrieve(backend_url, main_zip)
# DownloadProgressPopup(link=backend_url, downloadLocation=backend_zip,title="Downloading Backend")
#urllib.request.urlretrieve(backend_url, main_zip)
DownloadProgressPopup(link=backend_url, downloadLocation=main_zip,title="Downloading Backend")

printAndLog("Extracting backend")
shutil.unpack_archive(main_zip, main_folder)
Expand Down

0 comments on commit 0446c8e

Please sign in to comment.