Skip to content

Commit

Permalink
fix send sislogsms
Browse files Browse the repository at this point in the history
  • Loading branch information
Mh-Asmi committed Oct 7, 2024
1 parent d2107d2 commit 42cbf2a
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 2 deletions.
1 change: 1 addition & 0 deletions config/data-provider.php
Original file line number Diff line number Diff line change
Expand Up @@ -41,6 +41,7 @@
'twitter' => [],
'nexmo' => [],
'frontlinesms' => [],
'sislog'=>[],
'gmail' => [
'redirect_uri' => 'urn:ietf:wg:oauth:2.0:oob',
'authenticated' => false
Expand Down
2 changes: 1 addition & 1 deletion config/features.php
Original file line number Diff line number Diff line change
Expand Up @@ -33,7 +33,7 @@
'africastalking' => false,
'httpsms' => true,
'infobip' => true,
'sislog' => false,
'sislog' => true,
],

// Client limits
Expand Down
2 changes: 1 addition & 1 deletion src/Ushahidi/DataSource/DataSourceManager.php
Original file line number Diff line number Diff line change
Expand Up @@ -338,6 +338,6 @@ function ($consumer_key, $consumer_secret, $oauth_access_token, $oauth_access_to

protected function createSislogSource(array $config)
{
return new Sislog\Sislog($config);
return new Sislog\Sislog($config, new \GuzzleHttp\Client());
}
}

0 comments on commit 42cbf2a

Please sign in to comment.