diff options
author | John Wiegley <johnw@newartisans.com> | 2005-11-10 12:06:07 +0000 |
---|---|---|
committer | John Wiegley <johnw@newartisans.com> | 2008-04-13 02:41:21 -0400 |
commit | 122af13d853193fab1cd2c73980c4dd196cd598b (patch) | |
tree | f84f438468c31163b1e000641d10984a94e6d173 /quotes.cc | |
parent | e984f50869daf85a22233005565444fc6c0880d7 (diff) | |
download | fork-ledger-122af13d853193fab1cd2c73980c4dd196cd598b.tar.gz fork-ledger-122af13d853193fab1cd2c73980c4dd196cd598b.tar.bz2 fork-ledger-122af13d853193fab1cd2c73980c4dd196cd598b.zip |
Added a safety check to see if moment is less than date.
Diffstat (limited to 'quotes.cc')
-rw-r--r-- | quotes.cc | 3 |
1 files changed, 2 insertions, 1 deletions
@@ -29,7 +29,8 @@ void quotes_by_script::operator()(commodity_t& commodity, if ((commodity.history && std::difftime(now, commodity.history->last_lookup) < pricing_leeway) || std::difftime(now, last) < pricing_leeway || - (price && std::difftime(moment, date) <= pricing_leeway)) + (price && std::difftime(moment, date) > 0 && + std::difftime(moment, date) <= pricing_leeway)) return; using namespace std; |