Parcourir la source

Fixing parsing of url

logicp il y a 7 ans
Parent
commit
e9d698e90c
1 fichiers modifiés avec 4 ajouts et 4 suppressions
  1. 4 4
      src/Form/StatusForm.php

+ 4 - 4
src/Form/StatusForm.php

@@ -197,11 +197,11 @@ $stophere = null;
 //    }
   }
   public function statusAjaxSubmit(array &$form, FormStateInterface $form_state) {
-
-    if (strpos($form_state->getValue('message'), 'twitter')) {
+    $message = $form_state->getValue('message');
+    if (strpos($message, 'twitter')) {
       preg_match_all('#\bhttps?://[^,\s()<>]+(?:\([\w\d]+\)|([^,[:punct:]\s]|/))#', $message, $match);
       if ($this->previewGenerator !== null && !empty($match) && array_values($match)[0] !== null) {
-        $url = array_values($match)[0];
+        $url = is_array(array_values($match)[0]) ? array_values(array_values($match)[0])[0]: array_values($match)[0];
         $statusTwitter = new StatusTwitter($url);
         $nid = $statusTwitter->sendRequest();
       }
@@ -221,7 +221,7 @@ $stophere = null;
               'recipient' => $userViewed
             ]);
 
-            $statusEntity->setMessage($form_state->getValue('message'));
+            $statusEntity->setMessage($message);
             $statusEntity->save();
 
             if (\Drupal::service('module_handler')->moduleExists('heartbeat')) {