Simplify handling of only one member event
This commit is contained in:
parent
c07e5d4992
commit
86739e7d1e
1 changed files with 1 additions and 6 deletions
|
@ -182,9 +182,8 @@ module.exports = React.createClass({
|
|||
}
|
||||
if (!userEvents[userId].first) {
|
||||
userEvents[userId].first = e;
|
||||
} else {
|
||||
userEvents[userId].last = e;
|
||||
}
|
||||
userEvents[userId].last = e;
|
||||
});
|
||||
|
||||
// Populate the join/leave event arrays with events that represent what happened
|
||||
|
@ -198,10 +197,6 @@ module.exports = React.createClass({
|
|||
(userId) => {
|
||||
let firstEvent = userEvents[userId].first;
|
||||
let lastEvent = userEvents[userId].last;
|
||||
// Only one membership event was recorded for this userId
|
||||
if (!lastEvent) {
|
||||
lastEvent = firstEvent;
|
||||
}
|
||||
|
||||
// Membership BEFORE eventsToRender
|
||||
let previousMembership = firstEvent.getPrevContent().membership || "leave";
|
||||
|
|
Loading…
Reference in a new issue