Skip to content

Commit 262f877

Browse files
author
kenfullscale
committed
Revised to avoid future exceptions.
1 parent 1662a9d commit 262f877

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

Src/StackifyLib.AspNetCore/WebRequestDetailMapper.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -166,7 +166,7 @@ internal static void AddKey(string key, string value, Dictionary<string, string>
166166
{
167167
return;
168168
}
169-
dictionary.Add(key,value);
169+
dictionary[key] = value;
170170
}
171171
}
172172
}

0 commit comments

Comments
 (0)