关注博主列表同步bug修复

This commit is contained in:
jianzhichu
2026-01-22 21:38:42 +08:00
parent b331e73bd3
commit e011bd089f
26 changed files with 424 additions and 89 deletions
+11
View File
@@ -51,5 +51,16 @@ namespace dy.net.repository
return res > 0;
}
public async Task<bool> UpdateCookie(DouyinCookie cookie)
{
if (cookie != null)
{
var res = await Db.Updateable<DouyinCookie>(cookie).IgnoreColumns(x => new { x.MyUserId }).ExecuteCommandAsync();
return res > 0;
}
return false;
}
}
}