mirror of
https://gitlab.winehq.org/wine/wine-gecko.git
synced 2024-09-13 09:24:08 -07:00
Bug 760791 - GCLI tilt open command is broken: "TypeError: value is undefined"; r=dcamp
This commit is contained in:
parent
c3587b66c3
commit
ec1b18f2aa
@ -3781,6 +3781,9 @@ function NodeType(typeSpec) {
|
||||
NodeType.prototype = Object.create(Type.prototype);
|
||||
|
||||
NodeType.prototype.stringify = function(value) {
|
||||
if (value == null) {
|
||||
return '';
|
||||
}
|
||||
return value.__gcliQuery || 'Error';
|
||||
};
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user