Skip to content

Commit

Permalink
improve naming
Browse files Browse the repository at this point in the history
  • Loading branch information
stanislav-atr committed Dec 27, 2022
1 parent 21da001 commit f93dc21
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/helpers/log-message.js
Original file line number Diff line number Diff line change
Expand Up @@ -29,8 +29,8 @@ export const logMessage = (source, message, forced = false) => {
const RULE_MARKER = '#%#//scriptlet';
const markerIdx = ruleText.indexOf(RULE_MARKER);
if (markerIdx > -1) {
const messageExtension = ruleText.slice(markerIdx, ruleText.length);
messageStr += `; cannot apply rule: ${messageExtension}`;
const ruleWithoutDomains = ruleText.slice(markerIdx, ruleText.length);
messageStr += `; cannot apply rule: ${ruleWithoutDomains}`;
}
}

Expand Down

0 comments on commit f93dc21

Please sign in to comment.