[GenshinImpactBridge] fix missing articles (#3073)

This commit is contained in:
Corentin Garcia 2022-10-01 08:42:02 +02:00 committed by GitHub
parent 8ac5045963
commit c4d95558af
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 1 additions and 1 deletions

View File

@ -28,7 +28,7 @@ class GenshinImpactBridge extends BridgeAbstract
$category = $this->getInput('category');
$url = 'https://genshin.mihoyo.com/content/yuanshen/getContentList';
$url = $url . '?pageSize=3&pageNum=1&channelId=' . $category;
$url = $url . '?pageSize=5&pageNum=1&channelId=' . $category;
$api_response = getContents($url);
$json_list = json_decode($api_response, true);