Skip to content

Commit

Permalink
Fixed URL-safe ID serialization (#7724)
Browse files Browse the repository at this point in the history
  • Loading branch information
PascalSenn authored Nov 16, 2024
1 parent 3db033d commit 8004643
Showing 1 changed file with 2 additions and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -34,7 +34,8 @@ internal OptimizedNodeIdSerializer(
_stringSerializerMap =
boundSerializers.ToFrozenDictionary(
t => t.TypeName,
t => new Serializer(t.TypeName, t.Serializer, outputNewIdFormat, _urlSafeBase64));
t => new Serializer(t.TypeName, t.Serializer, outputNewIdFormat, urlSafeBase64));

_serializers = allSerializers;
_spanSerializerMap = new SpanSerializerMap();
foreach (var serializer in _stringSerializerMap.Values)
Expand Down

0 comments on commit 8004643

Please sign in to comment.