#Add Tag to existing forum post.
1 messages · Page 1 of 1 (latest)
So I have this method but its not adding the tag from tagId
private static Task PostCreated(SocketThreadChannel arg)
{
IThreadChannel thread = arg;
thread.ModifyAsync(x =>
{
var tags = new List<ulong>() { tagId };
x.AppliedTags = tags;
});
return Task.CompletedTask;
}