Skip to content

Commit cc08a3f

Browse files
authored
Merge pull request #57 from fa0311/develop-v4
4.7.1
2 parents e4c82c6 + 4a4cad1 commit cc08a3f

File tree

2 files changed

+7
-4
lines changed

2 files changed

+7
-4
lines changed

DMMGamePlayerFastLauncher.py

Lines changed: 6 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -386,9 +386,12 @@ def run_bypass_uac():
386386
url = response.json()["data"]["url"]
387387
token = urlparse(url).path.split("path=")[-1]
388388
session.get(url)
389-
res = session.get(
390-
f"https://accounts.dmm.com/service/login/token/=/path={token}/is_app=false"
391-
)
389+
try:
390+
session.get(
391+
f"https://accounts.dmm.com/service/login/token/=/path={token}/is_app=false"
392+
)
393+
except:
394+
pass
392395

393396
if session.cookies.get("login_session_id") == None:
394397
try:

setup.iss

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
; SEE THE DOCUMENTATION FOR DETAILS ON CREATING INNO SETUP SCRIPT FILES!
33

44
#define MyAppName "DMMGamePlayerFastLauncher"
5-
#define MyAppVersion "4.7.0"
5+
#define MyAppVersion "4.7.1"
66
#define MyAppPublisher "yuki"
77
#define MyAppURL "https://github.com/fa0311/DMMGamePlayerFastLauncher"
88
#define MyAppExeName "DMMGamePlayerFastLauncher.exe"

0 commit comments

Comments
 (0)