From: Andy Allan Date: Sat, 24 Mar 2012 18:09:09 +0000 (+0000) Subject: Bugfix - clear out tags before appending, to handle refreshing the trace data from... X-Git-Url: https://git.openstreetmap.org/potlatch2.git/commitdiff_plain/130779d3c8e44d6267af8169439fdafd59db26e0 Bugfix - clear out tags before appending, to handle refreshing the trace data from XML. --- 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)); }