commit 92e8baa5acd3db8a2322518a1f98305d5038d3a2 parent 276f9108ab1dac3b7fc6670b1061f8cf7809785a Author: Florian Dold <florian.dold@gmail.com> Date: Wed, 16 Dec 2015 10:46:15 +0100 type error Diffstat:
| M | extension/background/emscriptif.ts | | | 2 | +- |
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/extension/background/emscriptif.ts b/extension/background/emscriptif.ts @@ -519,7 +519,7 @@ abstract class SignatureStruct { constructor(x: any) { for (let k in x) { - this.set(k[0], k[1]); + this.set(x, x[k]); } }