Procházet zdrojové kódy

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

Herbert Vojčík před 10 roky
rodič
revize
fa964688dd
1 změnil soubory, kde provedl 1 přidání a 1 odebrání
  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))
 			);
 		}