1
0
mirror of https://github.com/ZetaKebab/MpcNET.git synced 2025-07-18 05:27:37 +00:00

Updates from latest Stylophone code

This commit is contained in:
Difegue
2021-10-03 17:53:58 +02:00
parent 6ee33cd704
commit 6c473b01b7
85 changed files with 2395 additions and 952 deletions

View File

@ -52,9 +52,9 @@
return this.command;
}
public IList<string> Deserialize(IReadOnlyList<KeyValuePair<string, string>> response)
public IList<string> Deserialize(SerializedResponse response)
{
var result = response.Select(atrb => $"{atrb.Key}: {atrb.Value}").ToList();
var result = response.ResponseValues.Select(atrb => $"{atrb.Key}: {atrb.Value}").ToList();
return result;
}
}