mirror of
https://expo.survex.com/repositories/troggle/.git
synced 2025-12-17 11:17:08 +00:00
fix non appearing cave ids on wallets
This commit is contained in:
@@ -249,10 +249,9 @@ class Wallet(models.Model):
|
||||
for i in cavelist:
|
||||
if not i:
|
||||
continue
|
||||
#print(f"Attempting adding cave '{i}' to wallet {self} ")
|
||||
try:
|
||||
caveobject = get_cave_leniently(i.strip())
|
||||
print(f"Attempting adding cave '{caveobject}' to wallet {self} ")
|
||||
# print(f"Attempting adding cave '{caveobject}' to wallet {self} ")
|
||||
if caveobject:
|
||||
self.caves.add(caveobject)
|
||||
except:
|
||||
|
||||
Reference in New Issue
Block a user