diff --git a/common/content/abbreviations.js b/common/content/abbreviations.js index d5239992..aa8558a8 100644 --- a/common/content/abbreviations.js +++ b/common/content/abbreviations.js @@ -113,7 +113,7 @@ var Abbreviations = Module("abbreviations", { */ get: function (mode, lhs) { let abbrevs = this.abbrevs[mode]; - return abbrevs && abbrevs[lhs]; + return abbrevs && abbrevs.hasOwnProperty(lhs) ? abbrevs[lhs] : null; }, /**