瀏覽代碼

fixing e43332a: args should by arrayified when going to userland DNU

Herbert Vojčík 10 年之前
父節點
當前提交
fa964688dd
共有 1 個文件被更改,包括 1 次插入1 次删除
  1. 1 1
      support/boot.js

+ 1 - 1
support/boot.js

@@ -1018,7 +1018,7 @@ define("amber/boot", [ 'require', './browser-compatibility' ], function (require
 			return receiver._doesNotUnderstand_(
 				globals.Message._new()
 					._selector_(st.convertSelector(selector))
-					._arguments_(args)
+					._arguments_([].slice.call(args))
 			);
 		}