From 130779d3c8e44d6267af8169439fdafd59db26e0 Mon Sep 17 00:00:00 2001 From: Andy Allan Date: Sat, 24 Mar 2012 18:09:09 +0000 Subject: [PATCH] Bugfix - clear out tags before appending, to handle refreshing the trace data from XML. --- net/systemeD/halcyon/connection/Trace.as | 1 + 1 file changed, 1 insertion(+) diff --git a/net/systemeD/halcyon/connection/Trace.as b/net/systemeD/halcyon/connection/Trace.as index d3bc0f2d..bf785de8 100644 --- a/net/systemeD/halcyon/connection/Trace.as +++ b/net/systemeD/halcyon/connection/Trace.as @@ -46,6 +46,7 @@ package net.systemeD.halcyon.connection { _id = Number(xml.@id); _filename = xml.@name; _description = xml.description; + tags = []; for each(var tag:XML in xml.tag) { tags.push(String(tag)); } -- 2.30.0