remove unnecessary verbosity

This commit is contained in:
ouwou
2022-08-08 02:41:54 -04:00
parent 955b9239b9
commit 02741f2c1b
2 changed files with 1 additions and 11 deletions

View File

@@ -129,7 +129,6 @@ void request::add_file(std::string_view name, const Glib::RefPtr<Gio::File> &fil
// copied
void request::add_field(std::string_view name, const char *data, size_t size) {
puts(name.data());
auto *field = curl_mime_addpart(m_form);
curl_mime_name(field, name.data());
curl_mime_data(field, data, size);