diff --git a/README.md b/README.md index ddd6c97c5..288d50f5b 100644 --- a/README.md +++ b/README.md @@ -285,7 +285,7 @@ var presenceNextPage = await presenceHistory.NextAsync(); Getting the current status of a channel, including details of the current number of `Publishers`, `Subscribers` and `PresenceMembers` etc is simple ```csharp -ChannelDetails details = channel.Status(); +ChannelDetails details = await channel.StatusAsync(); ChannelMetrics metrics = details.Status.Occupancy.Metrics; // Do something with 'metrics.Publishers' etc ```