Skip to content

Commit 42cbf2a

Browse files
committed
fix send sislogsms
1 parent d2107d2 commit 42cbf2a

File tree

3 files changed

+3
-2
lines changed

3 files changed

+3
-2
lines changed

config/data-provider.php

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -41,6 +41,7 @@
4141
'twitter' => [],
4242
'nexmo' => [],
4343
'frontlinesms' => [],
44+
'sislog'=>[],
4445
'gmail' => [
4546
'redirect_uri' => 'urn:ietf:wg:oauth:2.0:oob',
4647
'authenticated' => false

config/features.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -33,7 +33,7 @@
3333
'africastalking' => false,
3434
'httpsms' => true,
3535
'infobip' => true,
36-
'sislog' => false,
36+
'sislog' => true,
3737
],
3838

3939
// Client limits

src/Ushahidi/DataSource/DataSourceManager.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -338,6 +338,6 @@ function ($consumer_key, $consumer_secret, $oauth_access_token, $oauth_access_to
338338

339339
protected function createSislogSource(array $config)
340340
{
341-
return new Sislog\Sislog($config);
341+
return new Sislog\Sislog($config, new \GuzzleHttp\Client());
342342
}
343343
}

0 commit comments

Comments
 (0)