diff --git a/lbrynet/core/Wallet.py b/lbrynet/core/Wallet.py
index 5dbb785b6..9a0adc56d 100644
--- a/lbrynet/core/Wallet.py
+++ b/lbrynet/core/Wallet.py
@@ -378,7 +378,7 @@ class Wallet(object):
 
         def _get_my_unspent_claim(claims):
             for claim in claims:
-                if claim['name'] == name and not claim['is spent'] and not claim.get('supported_claimid'):
+                if claim['name'] == name and not claim['is spent'] and not claim.get('supported_claimid',False):
                     return claim
             return False