| 546 | } |
| 547 | |
| 548 | void ControllerObject::exportContacts() { |
| 549 | setState(stateContacts()); |
| 550 | _api.requestContacts([=](Data::ContactsList &&result) { |
| 551 | if (ioCatchError(_writer->writeContactsList(result))) { |
| 552 | return; |
| 553 | } |
| 554 | exportNext(); |
| 555 | }); |
| 556 | } |
| 557 | |
| 558 | void ControllerObject::exportSessions() { |
| 559 | setState(stateSessions()); |
nothing calls this directly
no test coverage detected