mirror of
https://github.com/MCMi460/3DS-RPC.git
synced 2025-06-18 21:45:37 -04:00
Tidy up backend variable names
This commit is contained in:
parent
0caae7c837
commit
ca11632340
@ -140,19 +140,19 @@ async def main():
|
|||||||
if len(network_friends) > 0:
|
if len(network_friends) > 0:
|
||||||
time.sleep(delay)
|
time.sleep(delay)
|
||||||
tracked_presences = await friends_client.get_friend_presence([ e.pid for e in network_friends ])
|
tracked_presences = await friends_client.get_friend_presence([ e.pid for e in network_friends ])
|
||||||
users = []
|
online_users = []
|
||||||
for game in tracked_presences:
|
for game in tracked_presences:
|
||||||
# Set all to offline if scraping
|
# Set all to offline if scraping
|
||||||
if scrape_only:
|
if scrape_only:
|
||||||
break
|
break
|
||||||
|
|
||||||
users.append(game.pid)
|
online_users.append(game.pid)
|
||||||
game_description = game.presence.game_mode_description
|
game_description = game.presence.game_mode_description
|
||||||
if not game_description:
|
if not game_description:
|
||||||
game_description = ''
|
game_description = ''
|
||||||
joinable = bool(game.presence.join_availability_flag)
|
joinable = bool(game.presence.join_availability_flag)
|
||||||
|
|
||||||
friend_code = str(principal_id_to_friend_code(users[-1])).zfill(12)
|
friend_code = str(principal_id_to_friend_code(game.pid)).zfill(12)
|
||||||
session.execute(
|
session.execute(
|
||||||
update(Friend)
|
update(Friend)
|
||||||
.where(Friend.friend_code == friend_code)
|
.where(Friend.friend_code == friend_code)
|
||||||
@ -168,8 +168,8 @@ async def main():
|
|||||||
)
|
)
|
||||||
session.commit()
|
session.commit()
|
||||||
|
|
||||||
for user in [ h for h in rotation if not h in users ]:
|
for offline_user in [ h for h in rotation if not h in online_users ]:
|
||||||
friend_code = str(principal_id_to_friend_code(user)).zfill(12)
|
friend_code = str(principal_id_to_friend_code(offline_user)).zfill(12)
|
||||||
session.execute(
|
session.execute(
|
||||||
update(Friend)
|
update(Friend)
|
||||||
.where(Friend.friend_code == friend_code)
|
.where(Friend.friend_code == friend_code)
|
||||||
|
Loading…
Reference in New Issue
Block a user