From: Hypolite Petovan Date: Tue, 28 Jan 2020 15:33:19 +0000 (-0500) Subject: Fix wrong variable name in Module\NoScrape X-Git-Url: https://git.mxchange.org/?a=commitdiff_plain;h=a2fb8cc03589443a94d44316b812331998b74821;p=friendica.git Fix wrong variable name in Module\NoScrape - Address https://github.com/friendica/friendica/issues/8000#issuecomment-579292541 --- diff --git a/src/Module/NoScrape.php b/src/Module/NoScrape.php index e213ca8563..53b3fc4e3e 100644 --- a/src/Module/NoScrape.php +++ b/src/Module/NoScrape.php @@ -33,7 +33,7 @@ class NoScrape extends BaseModule exit(); } - Profile::load($a, $nickname); + Profile::load($a, $which); $json_info = [ 'addr' => $a->profile['addr'],