From 097e4451e3d383cd5925a3a5db598cda64969f57 Mon Sep 17 00:00:00 2001 From: David Hampton Date: Wed, 22 Jan 2003 01:23:57 +0000 Subject: [PATCH] Fix problem getting quotes from trustnet. git-svn-id: svn+ssh://svn.gnucash.org/repo/gnucash/trunk@7870 57a11ea4-9604-0410-9ed3-97b8803252fd --- src/quotes/finance-quote-helper.in | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/quotes/finance-quote-helper.in b/src/quotes/finance-quote-helper.in index e4b1a71ee4..778708c5b4 100644 --- a/src/quotes/finance-quote-helper.in +++ b/src/quotes/finance-quote-helper.in @@ -230,8 +230,8 @@ sub schemify_quote { if (($$quotehash{$itemname, $field})) { $data = schemify_string($$quotehash{$itemname, $field}); } else { - # VWD quotes don't set the symbol - $data = $itemname; + # VWD and a few others don't set the symbol field + $data = schemify_string($itemname); } $quotedata .= "($field . $data)";