removed unnecessary console log

This commit is contained in:
HB9HIL
2026-02-06 01:12:32 +01:00
parent 1fb549d9d4
commit ea5b171902

View File

@@ -4,7 +4,6 @@
$('#install_form input').each(function() {
var inputId = $(this).attr('id');
if (inputId !== 'directory' && inputId !== 'websiteurl') { // do not restore directory and websiteurl for legacy reasons
console.log('Updated inputId: ', inputId);
if (localStorage.getItem(inputId)) {
$(this).val(localStorage.getItem(inputId));
}