mirror of
https://github.com/RSS-Bridge/rss-bridge.git
synced 2025-08-04 01:55:21 +02:00
Normalize some method calls (#2911)
The methods were called as static even though they were not.
This commit is contained in:
parent
a966213cd7
commit
e07a94d480
10 changed files with 12 additions and 12 deletions
|
@ -82,7 +82,7 @@ class IndiegogoBridge extends BridgeAbstract
|
|||
public function collectData()
|
||||
{
|
||||
$url = 'https://www.indiegogo.com/private_api/discover';
|
||||
$data_array = self::getCategories();
|
||||
$data_array = $this->getCategories();
|
||||
|
||||
$header = ['Content-type: application/json'];
|
||||
$opts = [CURLOPT_POSTFIELDS => json_encode($data_array)];
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue