From 3a87f4c456830f03c6167ad77b05148a9bd5f91a Mon Sep 17 00:00:00 2001 From: Irfan Date: Mon, 12 Jun 2023 04:06:02 +0500 Subject: [PATCH] fixes #391 --- app/Features/UserLookupHandler.php | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/app/Features/UserLookupHandler.php b/app/Features/UserLookupHandler.php index 10aee4f..b0de820 100644 --- a/app/Features/UserLookupHandler.php +++ b/app/Features/UserLookupHandler.php @@ -17,8 +17,9 @@ abstract class UserLookupHandler extends RequestHandlerWithScraperCache protected function getScraperData(string $requestFingerPrint, Collection $requestParams): CachedData { $username = $requestParams->get("username"); + return $this->scraperService->findByKey( - "username", + "internal_username", $username, $requestFingerPrint, );