Skip to content

Commit

Permalink
POST?
Browse files Browse the repository at this point in the history
  • Loading branch information
KillerX committed Dec 9, 2024
1 parent 265db9a commit f6eaff6
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion frontend/components/FileUploader.vue
Original file line number Diff line number Diff line change
Expand Up @@ -65,7 +65,7 @@ const uploadFile = () => {
const xhr = new XMLHttpRequest();
let startedAt: number;
xhr.open("post", props.endpoint, true);
xhr.open("POST", props.endpoint, true);
xhr.onloadstart = function () {
startedAt = Date.now();
};
Expand Down

0 comments on commit f6eaff6

Please sign in to comment.