File tree 1 file changed +3
-3
lines changed
app/assets/javascripts/backbone/helpers
1 file changed +3
-3
lines changed Original file line number Diff line number Diff line change @@ -117,11 +117,11 @@ class Kandan.Helpers.Channels
117
117
118
118
@ addMessage: (activityAttributes , state , local )->
119
119
belongsToCurrentUser = ( activityAttributes .user .id == Kandan .Data .Users .currentUser ().id )
120
- activityExists = ( $ (" #activity-#{ activityAttributes .id } " ).length == 0 )
120
+ activityExists = ( $ (" #activity-#{ activityAttributes .id } " ).length > 0 )
121
121
local = local || false
122
+ console .log ! local, ! belongsToCurrentUser, ! activityExists
122
123
123
- console .log local, ! belongsToCurrentUser, ! activityExists
124
- if local || (! belongsToCurrentUser || ! activityExists)
124
+ if local || (! local && ! belongsToCurrentUser && ! activityExists)
125
125
@ channelActivitiesEl (activityAttributes .channel_id )
126
126
.append (@ newActivityView (activityAttributes).render ().el )
127
127
You can’t perform that action at this time.
0 commit comments