Skip to content

Commit 8a3b5d4

Browse files
committed
Bugfix BLAST DB save
1 parent d2cf8c2 commit 8a3b5d4

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

blast/src/org/labkey/blast/model/BlastJob.java

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -95,9 +95,9 @@ public void setTitle(String title)
9595
_title = title;
9696
}
9797

98-
public Map<String, Object> getParams()
98+
public String getParams()
9999
{
100-
return Collections.unmodifiableMap(_params);
100+
return new JSONObject(_params).toString();
101101
}
102102

103103
public void setParams(String params)

0 commit comments

Comments
 (0)