1
0
mirror of https://github.com/gryf/pentadactyl-pm.git synced 2025-12-31 15:32:27 +01:00

Fix bugs. Closes issue #528.

This commit is contained in:
Kris Maglione
2011-05-20 12:11:03 -04:00
parent 9fee9fff68
commit 9791cdb886
2 changed files with 5 additions and 1 deletions

View File

@@ -725,6 +725,9 @@ var CommandLine = Module("commandline", {
if (flags & this.APPEND_TO_MESSAGES) {
let message = isObject(data) ? data : { message: data };
// Make sure the memoized message property is an instance property.
message.message;
this._messageHistory.add(update({ highlight: highlightGroup }, message));
data = message.message;
}