1
0
mirror of https://github.com/gryf/pentadactyl-pm.git synced 2025-12-23 01:37:58 +01:00

Fix brokenness.

This commit is contained in:
Kris Maglione
2015-02-25 10:35:08 -08:00
parent 1b21d04f68
commit d1937f708c
2 changed files with 6 additions and 4 deletions

View File

@@ -139,9 +139,11 @@ var MOW = Module("mow", {
body.append(output);
let str = typeof data !== "xml" && data.message || data;
if (!silent)
dactyl.triggerObserver("echoMultiline", data, highlightGroup, output[0]);
if (!silent) {
let str = data.message || data;
let msg = isString(str) ? str : output[0];
dactyl.triggerObserver("echoMultiline", data, highlightGroup, msg);
}
this._timer.tell();
if (!this.visible)