Skip to content
This repository was archived by the owner on Oct 28, 2019. It is now read-only.

Commit d14fd81

Browse files
committed
FIX: Issue with badge page layout
1 parent 3198af9 commit d14fd81

File tree

5 files changed

+3
-3
lines changed

5 files changed

+3
-3
lines changed

Releases/Linux/start.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -176,7 +176,7 @@ def get_blacklist():
176176
except:
177177
logging.warning("Reading badge page, please wait")
178178

179-
userinfo = badgePageData.find("div",{"class": "user_avatar"})
179+
userinfo = badgePageData.find("a",{"class": "user_avatar"})
180180
if not userinfo:
181181
logging.warning(Fore.RED + "Invalid cookie data, cannot log in to Steam" + Fore.RESET)
182182
raw_input("Press Enter to continue...")

Source/Idle Master Helper/idle-to-ready.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -126,7 +126,7 @@ def get_blacklist():
126126
except:
127127
logging.warning("Reading badge page, please wait")
128128

129-
userinfo = badgePageData.find("div",{"class": "user_avatar"})
129+
userinfo = badgePageData.find("a",{"class": "user_avatar"})
130130
if not userinfo:
131131
logging.warning(Fore.RED + "Invalid cookie data, cannot log in to Steam" + Fore.RESET)
132132
raw_input("Press Enter to continue...")

Source/Idle Master/start.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -176,7 +176,7 @@ def get_blacklist():
176176
except:
177177
logging.warning("Reading badge page, please wait")
178178

179-
userinfo = badgePageData.find("div",{"class": "user_avatar"})
179+
userinfo = badgePageData.find("a",{"class": "user_avatar"})
180180
if not userinfo:
181181
logging.warning(Fore.RED + "Invalid cookie data, cannot log in to Steam" + Fore.RESET)
182182
raw_input("Press Enter to continue...")

idle-to-ready.exe

-260 KB
Binary file not shown.

start.exe

402 KB
Binary file not shown.

0 commit comments

Comments
 (0)