| 458 | } |
| 459 | |
| 460 | void ControllerObject::exportPersonalInfo() { |
| 461 | setState(statePersonalInfo()); |
| 462 | _api.requestPersonalInfo([=](Data::PersonalInfo &&result) { |
| 463 | if (ioCatchError(_writer->writePersonal(result))) { |
| 464 | return; |
| 465 | } |
| 466 | exportNext(); |
| 467 | }); |
| 468 | } |
| 469 | |
| 470 | void ControllerObject::exportUserpics() { |
| 471 | _api.requestUserpics([=](Data::UserpicsInfo &&start) { |
nothing calls this directly
no test coverage detected