summaryrefslogtreecommitdiffstats
path: root/core/views
diff options
context:
space:
mode:
authorPhilip Sargent <philip.sargent@klebos.com>2022-09-22 22:41:42 +0300
committerPhilip Sargent <philip.sargent@klebos.com>2022-09-22 22:41:42 +0300
commitaa20692ad6d1dea43d63674335c4e4dba7ae07ec (patch)
treeb21c73b78a7e6d4629ed93672cee62e8094414a3 /core/views
parentaf88cb4d0faf58029a9c816e2d96d07d2e15e721 (diff)
downloadtroggle-aa20692ad6d1dea43d63674335c4e4dba7ae07ec.tar.gz
troggle-aa20692ad6d1dea43d63674335c4e4dba7ae07ec.tar.bz2
troggle-aa20692ad6d1dea43d63674335c4e4dba7ae07ec.zip
bugfixes and enabling older wallets to be found and listed
Diffstat (limited to 'core/views')
-rw-r--r--core/views/uploads.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/core/views/uploads.py b/core/views/uploads.py
index 3773e4f..17b57cb 100644
--- a/core/views/uploads.py
+++ b/core/views/uploads.py
@@ -359,7 +359,7 @@ def scanupload(request, path=None):
year = wallet[:4]
try:
- if int(year) <= 1998:
+ if wallet[4]!= "#":
#print(f'! - FORM scanupload - start {wallet} REDIRECT TO OLDWALLET')
return(oldwallet(request, path))
except: