fix: send d tags as list

This commit is contained in:
Alejandro Gomez
2023-01-30 08:43:46 +01:00
parent 6e34d101c9
commit 57616758c1
4 changed files with 8 additions and 8 deletions

View File

@ -55,7 +55,7 @@ export default function useLoginFeed() {
sub.Id = "login:muted";
sub.Kinds = new Set([EventKind.Lists]);
sub.Authors = new Set([pubKey]);
sub.DTag = Lists.Muted;
sub.DTags = new Set([Lists.Muted]);
sub.Limit = 1;
return sub;