Skip to content

Commit

Permalink
[Device] Do not use deprecated SoupSessionAsync
Browse files Browse the repository at this point in the history
Fixes intel#169
  • Loading branch information
phako committed Aug 31, 2021
1 parent d4fbaf7 commit ba10c13
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion libdleyna/server/device.c
Original file line number Diff line number Diff line change
Expand Up @@ -4595,7 +4595,7 @@ static dls_device_upload_t *prv_upload_data_new(const gchar *file_path,

upload = g_new0(dls_device_upload_t, 1);

upload->soup_session = soup_session_async_new();
upload->soup_session = soup_session_new();
upload->msg = soup_message_new("POST", import_uri);
upload->mapped_file = mapped_file;
upload->body = body;
Expand Down

0 comments on commit ba10c13

Please sign in to comment.