fix(llc): channel.show body

This commit is contained in:
Salvatore Giordano
2021-08-30 13:25:34 +02:00
parent 2bc6e2dd0f
commit d7c96143a5
@@ -292,6 +292,7 @@ class ChannelApi {
) async { ) async {
final response = await _client.post( final response = await _client.post(
'${_getChannelUrl(channelId, channelType)}/show', '${_getChannelUrl(channelId, channelType)}/show',
data: {},
); );
return EmptyResponse.fromJson(response.data); return EmptyResponse.fromJson(response.data);
} }