From 1e5cd3d7a1b6f9a69de7e2f3ed5048495e5a2335 Mon Sep 17 00:00:00 2001 From: Victor Shyba Date: Thu, 11 Mar 2021 13:16:44 -0300 Subject: [PATCH] typo, fix tests --- lbry/wallet/server/db/writer.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lbry/wallet/server/db/writer.py b/lbry/wallet/server/db/writer.py index e972cad40..ffeddd1d7 100644 --- a/lbry/wallet/server/db/writer.py +++ b/lbry/wallet/server/db/writer.py @@ -447,7 +447,7 @@ class SQLDB: UPDATE claim SET txo_hash=:txo_hash, tx_position=:tx_position, amount=:amount, height=:height, claim_type=:claim_type, media_type=:media_type, stream_type=:stream_type, - timestamp=:timestamp, fee_amount=:fee_amount, fee_currency=:fee_currency, no_source=:no_source + timestamp=:timestamp, fee_amount=:fee_amount, fee_currency=:fee_currency, no_source=:no_source, title=:title, duration=:duration, description=:description, author=:author, reposted_claim_hash=:reposted_claim_hash, release_time=CASE WHEN :release_time IS NOT NULL THEN :release_time ELSE release_time END WHERE claim_hash=:claim_hash;