dont err if file doesnt delete

This commit is contained in:
lza_menace 2022-08-31 23:48:18 -07:00
parent 1696c7fb58
commit f85f8cbdbf
1 changed files with 4 additions and 1 deletions

View File

@ -137,7 +137,10 @@ def delete(id):
if user == post.submitter or is_mod:
save_path_base = path.join(current_app.config["DATA_FOLDER"], "uploads")
save_path = path.join(save_path_base, post.image_name)
remove(save_path)
try:
remove(save_path)
except:
pass
audit_event(f'Deleted post {post.id}')
post.delete_instance()
flash("Deleted that shit, brah!", "is-success")