Commit b0301847 authored by mwikstrom's avatar mwikstrom

Use the new Concatenate feature when adding RedisValue to RedisKey.

parent 24775ba3
......@@ -706,7 +706,7 @@ protected RedisKey[] ToInner(RedisKey[] outer)
protected RedisValue ToInner(RedisValue outer)
{
return this.Prefix + outer;
return RedisKey.Concatenate(this.Prefix, outer);
}
protected RedisValue SortByToInner(RedisValue outer)
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment