查看S1正在审核中的帖子和被禁言用户的回帖
< Opiniones de 查看S1不可见内容(审核中/禁言)自动版
上次整改后外野很多帖子都提示无权访问,可以修改以下内容让帖子能够查看
1、replaceThreadContent方法 346行
if ($('#messagetext:contains(内容审核中,即将开放)').html()) {
修改为
if ($('#messagetext:contains(内容审核中,即将开放)').html()||$('#messagetext:contains(你无权访问)').html()) {
2、469行
if (!(text.includes('作者被禁止或删除') || text.includes('内容审核中,即将开放'))) {
修改为
if (!(text.includes('作者被禁止或删除') || text.includes('内容审核中,即将开放')|| text.includes('你无权访问'))) {
优秀!十分感谢
上次整改后外野很多帖子都提示无权访问,可以修改以下内容让帖子能够查看
1、replaceThreadContent方法 346行
if ($('#messagetext:contains(内容审核中,即将开放)').html()) {
修改为
if ($('#messagetext:contains(内容审核中,即将开放)').html()||$('#messagetext:contains(你无权访问)').html()) {
2、469行
if (!(text.includes('作者被禁止或删除') || text.includes('内容审核中,即将开放'))) {
修改为
if (!(text.includes('作者被禁止或删除') || text.includes('内容审核中,即将开放')|| text.includes('你无权访问'))) {