Socket
Socket
Sign inDemoInstall

stream-chat

Package Overview
Dependencies
9
Maintainers
11
Versions
283
Alerts
File Explorer

Advanced tools

Install Socket

Detect and block malicious and high-risk dependencies

Install

Comparing version 8.26.0 to 8.27.0

2

package.json
{
"name": "stream-chat",
"version": "8.26.0",
"version": "8.27.0",
"description": "JS SDK for the Stream Chat API",

@@ -5,0 +5,0 @@ "author": "GetStream",

@@ -503,3 +503,3 @@ import { Channel } from './channel';

const updatedPoll = { ...poll };
let ownVotes = [...(message.poll.own_votes || [])];
let ownVotes = [...(message.poll?.own_votes || [])];

@@ -531,3 +531,3 @@ if (pollVote.user_id === this._channel.getClient().userID) {

const updatedPoll = { ...poll };
const ownVotes = [...(message.poll.own_votes || [])];
const ownVotes = [...(message.poll?.own_votes || [])];

@@ -555,3 +555,3 @@ if (pollVote.user_id === this._channel.getClient().userID) {

const updatedPoll = { ...poll };
const ownVotes = [...(message.poll.own_votes || [])];
const ownVotes = [...(message.poll?.own_votes || [])];
if (pollVote.user_id === this._channel.getClient().userID) {

@@ -558,0 +558,0 @@ const index = ownVotes.findIndex((vote) => vote.option_id === pollVote.option_id);

Sorry, the diff of this file is too big to display

Sorry, the diff of this file is not supported yet

Sorry, the diff of this file is too big to display

Sorry, the diff of this file is not supported yet

Sorry, the diff of this file is too big to display

Sorry, the diff of this file is not supported yet

Sorry, the diff of this file is too big to display

Sorry, the diff of this file is not supported yet

Sorry, the diff of this file is too big to display

Sorry, the diff of this file is not supported yet

Sorry, the diff of this file is too big to display

Sorry, the diff of this file is not supported yet

Sorry, the diff of this file is too big to display

Sorry, the diff of this file is not supported yet

Sorry, the diff of this file is too big to display

Sorry, the diff of this file is too big to display

SocketSocket SOC 2 Logo

Product

  • Package Alerts
  • Integrations
  • Docs
  • Pricing
  • FAQ
  • Roadmap

Packages

Stay in touch

Get open source security insights delivered straight into your inbox.


  • Terms
  • Privacy
  • Security

Made with ⚡️ by Socket Inc