Skip to content

Commit e4eaa28

Browse files
committed
Dont include additional JB2 track properties in the response to the client
1 parent bbba8a4 commit e4eaa28

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

jbrowse/src/org/labkey/jbrowse/model/JsonFile.java

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -308,11 +308,11 @@ else if (TRACK_TYPES.bed.getFileType().isType(targetFile.getFile()))
308308

309309
ret = possiblyAddSearchConfig(ret, rg);
310310

311-
//TODO: validate/document additional properties:
311+
//TODO: validate/document additional properties. Note: unknown properties can break client-side parsing
312312
if (getTrackJson() != null)
313313
{
314-
JSONObject json = getExtraTrackConfig();
315-
ret.putAll(json);
314+
//JSONObject json = getExtraTrackConfig();
315+
//ret.putAll(json);
316316
}
317317

318318
return ret;

0 commit comments

Comments
 (0)