1
0
mirror of https://github.com/ZetaKebab/MpcNET.git synced 2025-01-14 22:18:43 +00:00

SendAsync return type changed

This commit is contained in:
glucaci 2016-12-07 12:10:27 +01:00
parent 4ffa4bca6c
commit adc532c6e2

View File

@ -52,8 +52,7 @@ namespace LibMpc
}
}
// TODO: create response type
public async Task<object> SendAsync<T>(IMpcCommand<T> command)
public async Task<IMpdMessage<T>> SendAsync<T>(IMpcCommand<T> command)
{
var mpdMessage = await _connection.SendAsync(command);