2
0
mirror of https://expo.survex.com/repositories/troggle/.git synced 2025-12-17 17:47:13 +00:00

fix non appearing cave ids on wallets

This commit is contained in:
2025-07-12 18:43:16 +03:00
parent 5f1b01bea7
commit 38744a1781

View File

@@ -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: