| 436 | } |
| 437 | |
| 438 | void ForumTopic::applyCreator(PeerId creatorId) { |
| 439 | if (_creatorId != creatorId) { |
| 440 | _creatorId = creatorId; |
| 441 | session().changes().topicUpdated(this, UpdateFlag::Creator); |
| 442 | } |
| 443 | } |
| 444 | |
| 445 | void ForumTopic::applyCreationDate(TimeId date) { |
| 446 | _creationDate = date; |
no test coverage detected