We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 8232a63 commit f27bee2Copy full SHA for f27bee2
1 file changed
src/StackExchange.Redis/RedisValue.cs
@@ -1430,7 +1430,7 @@ public bool StartsWith(RedisValue value)
1430
if (otherType == StorageType.Sequence &&
1431
(thisType == StorageType.MemoryManager || thisType == StorageType.ByteArray))
1432
{
1433
- return value.RawSequence().StartsWith(RawSpan());
+ return RawSpan().StartsWith(value.RawSequence());
1434
}
1435
byte[]? arr0 = null, arr1 = null;
1436
try
0 commit comments