| 845 | |
| 846 | template <typename F> |
| 847 | static td::Status process_string_or_object(Ctx &ctx, F &&run) { |
| 848 | if (ctx.is_object()) { |
| 849 | return ctx.process_array(true, std::move(run)); |
| 850 | } |
| 851 | return process_string(ctx); |
| 852 | } |
| 853 | |
| 854 | static td::Status process_image_url(Ctx &ctx) { |
| 855 | TRY_STATUS(ctx.process_obj_field("url", true, process_string_url_or_b64)); |
no test coverage detected