diff --git a/suchwow/routes/post.py b/suchwow/routes/post.py index 11acec5..0ada6d3 100644 --- a/suchwow/routes/post.py +++ b/suchwow/routes/post.py @@ -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")