Created
August 3, 2025 13:32
-
-
Save scripting/d61110c1d74eb1162ebc726c09dd22f1 to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| function notExcluded (draftInfo) { | |
| var flExcluded = false; | |
| appPrefs.historyCatsToExclude.forEach (function (cat1) { | |
| draftInfo.categories.forEach (function (cat2) { | |
| if (cat1 == cat2) { | |
| flExcluded = true; | |
| } | |
| }); | |
| }); | |
| return (!flExcluded); | |
| } |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment