Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Fix schemahandling upload #139

Merged
merged 4 commits into from
Nov 5, 2024
Merged
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Prev Previous commit
Next Next commit
fixed missing variable name
Daniel-VM committed Nov 4, 2024
commit ab47cda355cd085e49c4b90c8fffbbefb546f0fc
2 changes: 1 addition & 1 deletion core/utils/metadata_json.py
Original file line number Diff line number Diff line change
@@ -53,7 +53,7 @@ def load_metadata_json(json_file):
except json.decoder.JSONDecodeError:
return {"ERROR": core.config.ERROR_INVALID_JSON}
data["file_name"] = core.utils.generic_functions.store_file(
json_file, core.config.METADATA_JSON_UPLOAD_FOLDER
json_file, core.config.SCHEMAS_UPLOAD_FOLDER
)
return data