mirror of
https://github.com/j-a-n/raspberrymatic-addon-rmupdate.git
synced 2023-10-10 11:37:40 +00:00
Prevent to move userfs twice
This commit is contained in:
parent
d0186f7a8f
commit
5e3f3fa729
@ -375,19 +375,21 @@ along with this program. If not, see <http://www.gnu.org/licenses/>.
|
|||||||
return true;
|
return true;
|
||||||
},
|
},
|
||||||
onApprove: function() {
|
onApprove: function() {
|
||||||
moving_userfs_to_device = true;
|
|
||||||
display_message('warning', i18next.t('moving_userfs'), 300000);
|
display_message('warning', i18next.t('moving_userfs'), 300000);
|
||||||
rest('POST', '/move_userfs_to_device', JSON.stringify({"target_device":target_device}),
|
if (!moving_userfs_to_device) {
|
||||||
function(data) {
|
rest('POST', '/move_userfs_to_device', JSON.stringify({"target_device":target_device}),
|
||||||
moving_userfs_to_device = false;
|
function(data) {
|
||||||
display_message('success', i18next.t('userfs_moved'), 120000);
|
moving_userfs_to_device = false;
|
||||||
rest('POST', '/system_reboot');
|
display_message('success', i18next.t('userfs_moved'), 120000);
|
||||||
},
|
rest('POST', '/system_reboot');
|
||||||
function(xhr, ajaxOptions, thrownError) {
|
},
|
||||||
moving_userfs_to_device = false;
|
function(xhr, ajaxOptions, thrownError) {
|
||||||
default_error_callback(xhr, ajaxOptions, thrownError);
|
moving_userfs_to_device = false;
|
||||||
}
|
default_error_callback(xhr, ajaxOptions, thrownError);
|
||||||
);
|
}
|
||||||
|
);
|
||||||
|
}
|
||||||
|
moving_userfs_to_device = true;
|
||||||
}
|
}
|
||||||
})
|
})
|
||||||
.modal('show');
|
.modal('show');
|
||||||
|
Loading…
x
Reference in New Issue
Block a user