Accept tags to patch event

This commit is contained in:
2023-07-05 23:34:44 +01:00
parent 135583cf4d
commit 87b3e3b271
3 changed files with 8 additions and 3 deletions

View File

@ -71,7 +71,7 @@ public class NostrController : Controller
var pubkey = GetPubKey();
if (string.IsNullOrEmpty(pubkey)) return Unauthorized();
await _streamManager.PatchEvent(pubkey, req.Title, req.Summary, req.Image);
await _streamManager.PatchEvent(pubkey, req.Title, req.Summary, req.Image, req.Tags);
return Accepted();
}