Skip to content

Commit

Permalink
Showing OID number and friendly name for OIDs coming from oid.txt
Browse files Browse the repository at this point in the history
  • Loading branch information
RufusJWB committed Jan 29, 2019
1 parent 69537bb commit 8666457
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion Asn1Editor/API/Utils/ASN/AsnDecoder.cs
Original file line number Diff line number Diff line change
Expand Up @@ -212,7 +212,7 @@ class AsnDecoder {

if (MainWindowVM.OIDs.ContainsKey(oid.Value))
{
return MainWindowVM.OIDs[oid.Value]; //todo: This seems not to be thread safe
return $"{MainWindowVM.OIDs[oid.Value]} ({oid.Value})"; //todo: This seems not to be thread safe
}

if (!String.IsNullOrWhiteSpace(oid.FriendlyName))
Expand Down

0 comments on commit 8666457

Please sign in to comment.