| 825 | } |
| 826 | |
| 827 | bool PeerData::setAbout(const QString &newAbout) { |
| 828 | if (_about == newAbout) { |
| 829 | return false; |
| 830 | } |
| 831 | _about = newAbout; |
| 832 | session().changes().peerUpdated(this, UpdateFlag::About); |
| 833 | return true; |
| 834 | } |
| 835 | |
| 836 | void PeerData::checkFolder(FolderId folderId) { |
| 837 | const auto folder = folderId |
no test coverage detected