diff --git a/core/src/avm2/activation.rs b/core/src/avm2/activation.rs index 869d46b9d..ded0d8c90 100644 --- a/core/src/avm2/activation.rs +++ b/core/src/avm2/activation.rs @@ -1279,7 +1279,7 @@ impl<'a, 'gc, 'gc_context> Activation<'a, 'gc, 'gc_context> { } else { None } - .ok_or_else(|| format!("Property does not exist: {:?}", multiname.local_name()).into()); + .ok_or_else(|| format!("Property does not exist: {:?}", multiname).into()); let result: Value<'gc> = found?.into(); self.context.avm2.push(result); @@ -1301,7 +1301,7 @@ impl<'a, 'gc, 'gc_context> Activation<'a, 'gc, 'gc_context> { } else { None } - .ok_or_else(|| format!("Property does not exist: {:?}", multiname.local_name()).into()); + .ok_or_else(|| format!("Property does not exist: {:?}", multiname).into()); let result: Value<'gc> = found?; self.context.avm2.push(result);