Fixed manual skip vote check using wrong variable

This commit is contained in:
Ajay Ramachandran
2020-03-09 23:04:01 -04:00
parent c526a812e0
commit da6ccb561d

View File

@@ -290,7 +290,7 @@ class SkipNoticeComponent extends React.Component<SkipNoticeProps, SkipNoticeSta
if (this.manualSkip) {
this.changeNoticeTitle(chrome.i18n.getMessage("noticeTitle"));
if(Config.config.disableAutoSkip) this.contentContainer().vote(1, this.UUID);
if(Config.config.autoUpvote) this.contentContainer().vote(1, this.UUID);
}
}