Bug fixes

This commit is contained in:
2024-08-28 11:31:29 +01:00
parent 41d27b2bb2
commit 13059f04ae
3 changed files with 5 additions and 4 deletions

View File

@ -421,7 +421,7 @@ public class NostrController : Controller
a.Created,
a.Key,
a.Expires,
Stream = a.UserStream.Event
Stream = NostrJson.Deserialize<NostrEvent>(a.UserStream.Event)
})
.ToListAsync();
@ -454,7 +454,7 @@ public class NostrController : Controller
PubKey = userPubkey,
State = UserStreamState.Planned,
EdgeIp = string.Empty,
ForwardClientId = string.Empty
ForwardClientId = string.Empty,
};
newStream.PatchStream(req.Event);
var ev = _eventBuilder.CreateStreamEvent(newStream);