Skip to content

Commit

Permalink
Merge pull request #33 from mihai-chiorean/patch-1
Browse files Browse the repository at this point in the history
Fix dht relationship parsing bug (issue #32)
  • Loading branch information
mistermoe authored Jan 31, 2024
2 parents fa0401b + 1edf9d2 commit 762a4ee
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion packages/web5/lib/src/dids/did_dht/did_dht.dart
Original file line number Diff line number Diff line change
Expand Up @@ -105,7 +105,7 @@ class DidDht implements Did {

for (final value in splitValues) {
relationshipsMap[value] ??= [];
relationshipsMap[value]!.add(value);
relationshipsMap[value]!.add(property);
}
}

Expand Down

0 comments on commit 762a4ee

Please sign in to comment.