mirror of
https://github.com/firefly-iii/firefly-iii.git
synced 2025-10-11 15:16:27 +00:00
Fix #1056
This commit is contained in:
2
public/js/ff/import/status.js
vendored
2
public/js/ff/import/status.js
vendored
@@ -163,7 +163,7 @@ function jobIsStalled(data) {
|
||||
function startJob() {
|
||||
// disable the button, add loading thing.
|
||||
$('.start-job').prop('disabled', true).text('...');
|
||||
$.post(jobStartUri).fail(reportOnSubmitError);
|
||||
$.post(jobStartUri, {_token: token}).fail(reportOnSubmitError);
|
||||
|
||||
// check status, every 500 ms.
|
||||
timeOutId = setTimeout(checkJobStatus, startInterval);
|
||||
|
Reference in New Issue
Block a user