添加非关注博主,验证是否已存在

This commit is contained in:
jianzhichu
2025-12-01 21:53:24 +08:00
parent 4e561a8e94
commit 6c99825548
3 changed files with 7 additions and 2 deletions
+1 -1
View File
@@ -68,7 +68,7 @@ namespace dy.net.Controllers
public async Task<IActionResult> AddFollow(DouyinFollowed followed)
{
var res = await _douyinFollowService.AddAsync(followed);
return Ok(new { code = res ? 0 : -1, msg = res ? "" : "添加失败" });
return Ok(new { code = res ? 0 : -1, msg = res ? "" : "添加失败,或者已存在相同secuid和uid" });
}
/// <summary>