Commit 3e2a32a7 authored by Birte Kristina Friesel's avatar Birte Kristina Friesel
Browse files

Result: JSON: Return the cleaned up hash, not the original...

parent 7fdc8d20
Loading
Loading
Loading
Loading
+1 −1
Original line number Diff line number Diff line
@@ -732,7 +732,7 @@ sub TO_JSON {
	delete $copy{replaced_by};
	delete $copy{replacement_for};

	return { %{$self} };
	return { %copy };
}

1;