forked from Gardener/ShareX_Storage
fixed server start crash if a file didn't contain a "_"
This commit is contained in:
parent
d9167638f6
commit
0bf1d470da
@ -138,8 +138,9 @@ def main():
|
||||
if not os.path.isdir(f'{conf.data_path}/{acc}'):
|
||||
continue
|
||||
for file in os.listdir(f"{conf.data_path}/{acc}"):
|
||||
fhash, fname = file.split('_', 1)
|
||||
file_db[acc][fhash] = fname
|
||||
if "_" in file:
|
||||
fhash, fname = file.split('_', 1)
|
||||
file_db[acc][fhash] = fname
|
||||
|
||||
app = web.Application(middlewares=[prepare])
|
||||
app.router.add_post(conf.prefix + '/post/{acc}', handle_upload)
|
||||
|
Loading…
Reference in New Issue
Block a user