Skip to content

Commit 5b3f4d0

Browse files
committed
url upd
1 parent e7c9166 commit 5b3f4d0

File tree

2 files changed

+4
-4
lines changed

2 files changed

+4
-4
lines changed

Libs/ConnectionCheck.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@ def run(self):
1616
self.github_status_checked.emit(False)
1717

1818
try:
19-
response = requests.get('https://seuyh.ru', timeout=10)
19+
response = requests.get('https://stlunlocker.pro', timeout=10)
2020
if response.status_code == 200:
2121
self.server_status_checked.emit(True)
2222
else:

UI_logic/MainWindow.py

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -241,7 +241,7 @@ def handle_server_status(self, status):
241241
if self.dialogexec(self.tr('Connection error'), self.tr(
242242
'Cant establish connection with server\nCheck your connection or you can try download DLC directly\nUnzip downloaded "dlc" folder to game folder\nThen you can continue'),
243243
self.tr("Exit"), self.tr("Open")):
244-
self.open_link_in_browser('https://mega.nz/file/cmNjTaqB#xGVxV0ZMDButCvSEgbul07p4OCWR3pNDcLZAs7Q_AaI')
244+
self.open_link_in_browser('https://mega.nz/folder/4zFRnD6a#aVGAK32ZHPxCp7bMtG87BA')
245245
self.alternative_unloc_checkbox.setEnabled(False)
246246
else:
247247
self.close()
@@ -298,7 +298,7 @@ def download_alt_method(self):
298298

299299
try:
300300
response = requests.get(
301-
"https://seuyh.ru/unlocker/launcher-installer-windows_2024.13.msi",
301+
"https://stlunlocker.pro/unlocker/launcher-installer-windows_2024.13.msi",
302302
stream=True)
303303
total_size_in_bytes = int(response.headers.get('content-length', 0))
304304
block_size = 1024
@@ -389,7 +389,7 @@ def start_next_download():
389389
dlc_folder = dlc['dlc_folder']
390390
if dlc_folder == '':
391391
continue
392-
file_url = f"{'https://seuyh.ru/unlocker/'}{dlc_folder}.zip"
392+
file_url = f"{'https://stlunlocker.pro/unlocker/'}{dlc_folder}.zip"
393393
save_path = os.path.join(self.game_path, 'dlc', f'{dlc_folder}.zip')
394394
dlc_path = os.path.join(self.game_path, 'dlc', dlc_folder)
395395
if not os.path.exists(dlc_path) and (not os.path.exists(save_path) or os.path.getsize(save_path) == 0):

0 commit comments

Comments
 (0)