| 474 | } |
| 475 | |
| 476 | bool Settings::hasOverlayAutoSendToFriend(uint64_t friend_id) const |
| 477 | { |
| 478 | if (auto_send_any_overlay_invites) { |
| 479 | return true; |
| 480 | } |
| 481 | return !!auto_send_overlay_invites_friends.count(friend_id); |
| 482 | } |
| 483 | |
| 484 | size_t Settings::overlayAutoSendInvitesCount() const |
| 485 | { |
no test coverage detected