From f2397d93ee60ef6a8f7962edfa092a79ddce6ad0 Mon Sep 17 00:00:00 2001 From: Morgan Bazalgette Date: Sun, 4 Mar 2018 21:24:19 +0100 Subject: [PATCH] Change RippleAPI's user-agent --- classes/RippleAPI.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/classes/RippleAPI.php b/classes/RippleAPI.php index 1cb4daf..106ced1 100644 --- a/classes/RippleAPI.php +++ b/classes/RippleAPI.php @@ -31,7 +31,7 @@ public static function request($path, $method, $token, $params = []) { // create curl and set necessary headers and options $c = new \Curl\Curl(); - $c->setUserAgent("RippleAPIPHPClient/1.0 MisilrouAPI/1.0"); + $c->setUserAgent("RippleAPIPHPClient/1.0 MisirlouAPI/1.0"); $c->setHeader("Authorization", "Bearer " . $token); $c->setOpt(CURLOPT_ENCODING, "gzip"); $c->setOpt(CURLOPT_RETURNTRANSFER, true);