From 76084cdccae8de22d67601caee542eaf1f022b3c Mon Sep 17 00:00:00 2001 From: Dag Date: Mon, 9 May 2022 21:02:21 +0200 Subject: [PATCH] fix: logic bug in limiting --- bridges/GettrBridge.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/bridges/GettrBridge.php b/bridges/GettrBridge.php index c6c5f99a..5ecc5c83 100644 --- a/bridges/GettrBridge.php +++ b/bridges/GettrBridge.php @@ -30,7 +30,7 @@ class GettrBridge extends BridgeAbstract $api = sprintf( 'https://api.gettr.com/u/user/%s/posts?offset=0&max=%s&dir=fwd&incl=posts&fp=f_uo', $this->getInput('user'), - max($this->getInput('limit'), 20) + min($this->getInput('limit'), 20) ); $data = json_decode(getContents($api), false);