Skip to content

Commit 969f694

Browse files
committed
Replaced ^ operators w/ more readable != ↞ [auto-sync from https://github.com/adamlui/ai-web-extensions/tree/main/amazongpt]
1 parent f7545b2 commit 969f694

1 file changed

Lines changed: 2 additions & 2 deletions

File tree

chatgpt/amazongpt/amazongpt.user.js

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33
// @description Add AI chat & product/category summaries to Amazon shopping, powered by the latest LLMs like GPT-4o!
44
// @author KudoAI
55
// @namespace https://kudoai.com
6-
// @version 2025.10.19
6+
// @version 2025.10.19.1
77
// @license MIT
88
// @icon https://amazongpt.kudoai.com/assets/images/icons/app/black-gold-teal/icon48.png?v=8e8ed1c
99
// @icon64 https://amazongpt.kudoai.com/assets/images/icons/app/black-gold-teal/icon64.png?v=8e8ed1c
@@ -1650,7 +1650,7 @@
16501650
else {
16511651
settings.save(key, !config[key]) // update config
16521652
feedback.notify(`${settings.controls[key].label} ${
1653-
menus.toolbar.state.words[+(key.includes('Disabled') ^ config[key])]}`)
1653+
menus.toolbar.state.words[+(key.includes('Disabled') != config[key])]}`)
16541654
}
16551655
}
16561656

0 commit comments

Comments
 (0)