Skip to content

Commit 316889a

Browse files
committed
additional comments from final eyeballs
1 parent 339c769 commit 316889a

File tree

2 files changed

+2
-1
lines changed

2 files changed

+2
-1
lines changed

src/StackExchange.Redis/Interfaces/ISubscriber.cs

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -110,6 +110,7 @@ public interface ISubscriber : IRedis
110110
/// See
111111
/// <seealso href="https://redis.io/commands/unsubscribe"/>,
112112
/// <seealso href="https://redis.io/commands/punsubscribe"/>.
113+
/// <seealso href="https://redis.io/commands/sunsubscribe"/>.
113114
/// </remarks>
114115
void UnsubscribeAll(CommandFlags flags = CommandFlags.None);
115116

src/StackExchange.Redis/PhysicalConnection.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1678,7 +1678,7 @@ private void MatchResult(in RawResult result)
16781678
channel = items[1].AsRedisChannel(ChannelPrefix, RedisChannel.RedisChannelOptions.None);
16791679
Trace("MESSAGE: " + channel);
16801680
}
1681-
else
1681+
else // see check on outer-if that restricts to message / smessage
16821682
{
16831683
channel = items[1].AsRedisChannel(ChannelPrefix, RedisChannel.RedisChannelOptions.Sharded);
16841684
Trace("SMESSAGE: " + channel);

0 commit comments

Comments
 (0)