Skip to content

Commit 973992b

Browse files
committed
Fix invalidateAccessToken method not reading access token properly
1 parent eda89b0 commit 973992b

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

kiteconnect.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -276,7 +276,7 @@ public function invalidateAccessToken($access_token = null) {
276276
}
277277

278278
return $this->_delete("api.token.invalidate", [
279-
"access_token" => $this->$access_token,
279+
"access_token" => $access_token,
280280
"api_key" => $this->api_key
281281
]);
282282
}

0 commit comments

Comments
 (0)