Explorar el Código

Clean up arrow notation

tags/v0.1.2^2
Paul Holden hace 7 años
padre
commit
e07ac73608
Se han modificado 1 ficheros con 1 adiciones y 5 borrados
  1. +1
    -5
      src/server/components/social.js

+ 1
- 5
src/server/components/social.js Ver fichero

@@ -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();



Cargando…
Cancelar
Guardar