Browse Source

Merge pull request #3191

Diadlo (1):
      fix(core): Added emit idSet after set NoSpam
pull/3214/head
sudden6 9 years ago
parent
commit
6a7dbcb2f6
No known key found for this signature in database
GPG Key ID: 279509B499E032B9
  1. 2
      src/core/core.cpp

2
src/core/core.cpp

@ -1210,6 +1210,8 @@ void Core::setNospam(uint32_t nospam) @@ -1210,6 +1210,8 @@ void Core::setNospam(uint32_t nospam)
uint8_t *nspm = reinterpret_cast<uint8_t*>(&nospam);
std::reverse(nspm, nspm + 4);
tox_self_set_nospam(tox, nospam);
emit idSet(getSelfId().toString());
}
void Core::killTimers(bool onlyStop)

Loading…
Cancel
Save