| 504 | } |
| 505 | |
| 506 | void SendVenue(SendAction action, Data::InputVenue venue) { |
| 507 | SendSimpleMedia( |
| 508 | action, |
| 509 | MTP_inputMediaVenue( |
| 510 | MTP_inputGeoPoint( |
| 511 | MTP_flags(0), |
| 512 | MTP_double(venue.lat), |
| 513 | MTP_double(venue.lon), |
| 514 | MTPint()), // accuracy_radius |
| 515 | MTP_string(venue.title), |
| 516 | MTP_string(venue.address), |
| 517 | MTP_string(venue.provider), |
| 518 | MTP_string(venue.id), |
| 519 | MTP_string(venue.venueType))); |
| 520 | } |
| 521 | |
| 522 | void FillMessagePostFlags( |
| 523 | const SendAction &action, |
nothing calls this directly
no test coverage detected