Fix syntax error
This commit is contained in:
parent
ec5e54a52f
commit
2a00b3fe06
1 changed files with 2 additions and 2 deletions
|
@ -81,14 +81,14 @@ class NoteService
|
|||
|
||||
//micropub request, syndication sent as array
|
||||
if (
|
||||
(is_array($request->input('syndicate-to'))
|
||||
(is_array($request->input('syndicate-to')))
|
||||
&&
|
||||
(in_array('https://twitter.com/jonnybarnes', $request->input('syndicate-to')))
|
||||
) {
|
||||
dispatch(new SyndicateToTwitter($note));
|
||||
}
|
||||
if (
|
||||
(is_array($request->input('syndicate-to'))
|
||||
(is_array($request->input('syndicate-to')))
|
||||
&&
|
||||
(in_array('https://facebook.com/jonnybarnes', $request->input('syndicate-to')))
|
||||
) {
|
||||
|
|
Loading…
Add table
Reference in a new issue