Skip to content

Commit

Permalink
fixed double doi: bug
Browse files Browse the repository at this point in the history
  • Loading branch information
ErykKul committed Dec 1, 2023
1 parent cfbdea5 commit 273d6ef
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/js/fileupload2.js
Original file line number Diff line number Diff line change
Expand Up @@ -853,7 +853,7 @@ async function directUploadFinished() {
data: fd,
processData: false,
success: function(body, statusText, jqXHR) {
console.log("All files sent to " + siteUrl + '/dataset.xhtml?persistentId=doi:' + datasetPid + '&version=DRAFT');
console.log("All files sent to " + siteUrl + '/dataset.xhtml?persistentId=' + datasetPid + '&version=DRAFT');
addMessage('success', 'msgUploadComplete');
},
error: function(jqXHR, textStatus, errorThrown) {
Expand Down

0 comments on commit 273d6ef

Please sign in to comment.