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

Fix :cookies action completion.

I'm assuming that the change to the completion module, in 916ea41, no
longer handling bare objects is deliberate and this appears consistent
with other cases.
This commit is contained in:
Doug Kearns
2016-01-11 02:39:30 +11:00
parent 4ee27ef728
commit 13a8b46093

View File

@@ -632,7 +632,7 @@ var Sanitizer = Module("sanitizer", XPCOM([Ci.nsIObserver, Ci.nsISupportsWeakRef
}; };
break; break;
case 1: case 1:
context.completions = Sanitizer.COMMANDS; context.completions = iter(Sanitizer.COMMANDS);
break; break;
} }
} }