We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
2 parents 884e5ef + be4288a commit b43a1c7Copy full SHA for b43a1c7
1 file changed
src/Ray.BiliBiliTool.DomainService/AccountDomainService.cs
@@ -206,11 +206,12 @@ public async Task UnfollowBatched(BiliCookie ck)
206
/// 获取分组(标签)
207
/// </summary>
208
/// <param name="groupName"></param>
209
+ /// <param name="ck"></param>
210
/// <returns></returns>
211
private async Task<TagDto> GetTag(string groupName, BiliCookie ck)
212
{
213
string getTagsReferer = string.Format(RelationApiConstant.GetTagsReferer, ck.UserId);
- List<TagDto> tagList = (await relationApi.GetTags(getTagsReferer, ck.ToString())).Data;
214
+ List<TagDto> tagList = (await relationApi.GetTags(ck.ToString(), getTagsReferer)).Data;
215
TagDto tag = tagList.FirstOrDefault(x => x.Name == groupName);
216
return tag;
217
}
0 commit comments