Skip to content
This repository was archived by the owner on Sep 29, 2023. It is now read-only.

Commit f34c301

Browse files
committed
Fix for multiple rate limiters
1 parent b6c785c commit f34c301

File tree

1 file changed

+2
-1
lines changed

1 file changed

+2
-1
lines changed

app/views/docs/service.phtml

+2-1
Original file line numberDiff line numberDiff line change
@@ -262,7 +262,8 @@ $paramSDK = (!empty($sdk)) ? '?sdk='.$sdk : '';
262262
return $y - $x;
263263
});
264264

265-
var_dump($rateKey);
265+
$rateKey = (is_array($rateKey)) ? implode(',', $rateKey) : $rateKey;
266+
266267
$rateKey = array_map(function($element)
267268
{
268269
$element = mb_substr($element, 0, mb_strpos($element, ':'));

0 commit comments

Comments
 (0)