1
0
mirror of https://github.com/qTox/qTox.git synced 2024-03-22 14:00:36 +08:00

Merge pull request #3191

Diadlo (1):
      fix(core): Added emit idSet after set NoSpam
This commit is contained in:
sudden6 2016-04-25 19:38:59 +02:00
commit 6a7dbcb2f6
No known key found for this signature in database
GPG Key ID: 279509B499E032B9

View File

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