Skip to content

Commit 74285fd

Browse files
committedApr 13, 2012
Fixes condition for adding message to channel
Signed-off-by: Akash Manohar J <akash@akash.im>
1 parent 2f9ea7e commit 74285fd

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed
 

‎app/assets/javascripts/backbone/helpers/channels.js.coffee

+3-3
Original file line numberDiff line numberDiff line change
@@ -117,11 +117,11 @@ class Kandan.Helpers.Channels
117117

118118
@addMessage: (activityAttributes, state, local)->
119119
belongsToCurrentUser = ( activityAttributes.user.id == Kandan.Data.Users.currentUser().id )
120-
activityExists = ( $("#activity-#{activityAttributes.id}").length == 0 )
120+
activityExists = ( $("#activity-#{activityAttributes.id}").length > 0 )
121121
local = local || false
122+
console.log !local, !belongsToCurrentUser, !activityExists
122123

123-
console.log local, !belongsToCurrentUser, !activityExists
124-
if local || (!belongsToCurrentUser || !activityExists)
124+
if local || (!local && !belongsToCurrentUser && !activityExists)
125125
@channelActivitiesEl(activityAttributes.channel_id)
126126
.append(@newActivityView(activityAttributes).render().el)
127127

0 commit comments

Comments
 (0)
Please sign in to comment.