From dc49ebd704c63e521e6ab6463cfb26140a4bfcc0 Mon Sep 17 00:00:00 2001 From: Dev Singh Date: Sun, 6 Oct 2024 14:19:18 -0500 Subject: [PATCH] change query to acm.illinois.edu --- src/utils/graph.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/utils/graph.py b/src/utils/graph.py index 05c1611..29bef88 100644 --- a/src/utils/graph.py +++ b/src/utils/graph.py @@ -81,7 +81,7 @@ async def isPaidMember(self, netID: str) -> bool: return False return ( parsed["value"][0]["userPrincipalName"] - == f"{netID}_illinois.edu#EXT#@acmillinois.onmicrosoft.com" + == f"{netID}@acm.illinois.edu" )