First working build™️

master
Chloe Fontenot 🏳️‍⚧️ 2023-03-31 12:29:46 +07:00
parent 63999b9286
commit 9b6b010da0
1 changed files with 2 additions and 1 deletions

@ -78,8 +78,9 @@ function arrayRotate(arr, reverse, amount) {
}
function matchAbbr(abbrTarget) {
console.log("Looking for: " + abbrTarget);
for (var abbr in abbreviationKey.target_phrases) {
if (abbreviationKey.target_phrases[abbr] === abbrTarget) {
if (abbreviationKey.target_phrases[abbr] == abbrTarget) {
return abbr;
} else {
return "";