소스 검색

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))
 			);
 		}