Browse Source

Bug fix for HeartbeatBlock array_unique error

logicp 7 years ago
parent
commit
fa352eacf3
1 changed files with 2 additions and 1 deletions
  1. 2 1
      src/Plugin/Block/HeartbeatBlock.php

+ 2 - 1
src/Plugin/Block/HeartbeatBlock.php

@@ -105,7 +105,8 @@ class HeartbeatBlock extends BlockBase implements ContainerFactoryPluginInterfac
       }
     }
       if ($feed !== null) {
-        if (!empty($uids = array_unique($uids))) {
+      $uids = count($uids) > 1 ? array_unique($uids) : $uids;
+        if (!empty($uids)) {
           foreach ($this->heartbeatStreamServices->createStreamForUidsByType($uids, $feed) as $heartbeat) {
             $messages[] = $heartbeat->getMessage()->getValue()[0]['value'];
           }