Sfoglia il codice sorgente

Clean up arrow notation

tags/v0.1.2^2
Paul Holden 7 anni fa
parent
commit
e07ac73608
1 ha cambiato i file con 1 aggiunte e 5 eliminazioni
  1. +1
    -5
      src/server/components/social.js

+ 1
- 5
src/server/components/social.js Vedi File

@@ -182,12 +182,8 @@ define([
}

// Only add if not yet in party
if (!this.party.find(function (id) {
return id === sourceId;
})
) {
if (!this.party.find(f => (id === sourceId)))
this.party.push(sourceId);
}

this.updatePartyOnThread();



Caricamento…
Annulla
Salva