From 108d2a033b38b16fca88a1275933639894ee58b6 Mon Sep 17 00:00:00 2001 From: Jack Robison Date: Thu, 9 Aug 2018 08:32:43 -0400 Subject: [PATCH] fix attribute error when reflector component is disabled --- lbrynet/database/storage.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lbrynet/database/storage.py b/lbrynet/database/storage.py index ffd3bb684..84de0144e 100644 --- a/lbrynet/database/storage.py +++ b/lbrynet/database/storage.py @@ -180,7 +180,7 @@ class SQLiteStorage(object): # change to the associated content claim occurs. these are added by the file manager # when it loads each file self.content_claim_callbacks = {} # {: } - + self.check_should_announce_lc = None if 'reflector' not in conf.settings['components_to_skip']: self.check_should_announce_lc = task.LoopingCall(self.verify_will_announce_all_head_and_sd_blobs)