| 831 | } |
| 832 | |
| 833 | void ForumTopic::applyColorId(int32 colorId) { |
| 834 | if (_colorId != colorId) { |
| 835 | _colorId = colorId; |
| 836 | session().changes().topicUpdated(this, UpdateFlag::ColorId); |
| 837 | } |
| 838 | } |
| 839 | |
| 840 | void ForumTopic::applyMaybeLast(not_null<HistoryItem*> item) { |
| 841 | if (!_lastServerMessage.value_or(nullptr) |
no test coverage detected