Skip to content

Commit

Permalink
fix: level filter default value bug
Browse files Browse the repository at this point in the history
  • Loading branch information
festoney8 committed Jul 21, 2024
1 parent 3cb0bcf commit d4a0846
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/filters/commentFilter/pages/actions/action.ts
Original file line number Diff line number Diff line change
Expand Up @@ -249,7 +249,7 @@ export class LevelAction implements CommentFilterAction {
this.valueKey = valueKey
this.checkCommentList = checkCommentList
this.status = GM_getValue(`BILICLEANER_${this.statusKey}`, false)
this.value = GM_getValue(`BILICLEANER_${this.valueKey}`, 60)
this.value = GM_getValue(`BILICLEANER_${this.valueKey}`, 3)
// 配置子过滤器
levelFilterInstance.setStatus(this.status)
levelFilterInstance.setParams(this.value)
Expand Down

0 comments on commit d4a0846

Please sign in to comment.