From e10e1de92fcc681c325565a6766b3f9bf06306a2 Mon Sep 17 00:00:00 2001 From: Jack Robison Date: Tue, 2 Oct 2018 10:26:02 -0400 Subject: [PATCH] [API] fix https://github.com/lbryio/lbry/issues/1501 --- lbrynet/daemon/Publisher.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lbrynet/daemon/Publisher.py b/lbrynet/daemon/Publisher.py index f5b320e1d..0417d6f87 100644 --- a/lbrynet/daemon/Publisher.py +++ b/lbrynet/daemon/Publisher.py @@ -68,7 +68,7 @@ class Publisher: ) if stream_hash: # the stream_hash returned from the db will be None if this isn't a stream we have yield self.storage.save_content_claim( - stream_hash.decode(), tx.outputs[0].id + stream_hash, tx.outputs[0].id ) self.lbry_file = [f for f in self.lbry_file_manager.lbry_files if f.stream_hash == stream_hash][0] defer.returnValue(tx)