Skip to content

Commit d98e01a

Browse files
committed
Fix: Update upload path
1 parent 9dcdd1e commit d98e01a

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

app.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@
66
from flask import Flask, request, send_from_directory, g
77

88

9-
UPLOAD_DIRECTORY = "/home/libreuser"
9+
UPLOAD_DIRECTORY = str(Path.home())
1010
MAX_FILE_SIZE = int(os.getenv('MAX_FILE_SIZE', 30)) #In Megabyte
1111

1212
app = Flask(__name__)

0 commit comments

Comments
 (0)