Merge claude/1

This commit is contained in:
librelad 2026-07-17 23:04:12 +01:00
commit 120e69de20

View File

@ -287,7 +287,7 @@ Object.assign(TasksManager.prototype, {
},
isLibrePortalSystemTask(task) {
if (!task || !task.command || task.app) return false;
return /^libreportal (setup|backup\s+all|backup\s+system|backup\s+verify|backup\s+location|backup\s+repo|restore\s+migrate\s+system|restore\s+migrate\s+discover|restore\s+first-run|webui|config|update|verify|system\s+(reclaim|image))\b/.test(task.command);
return /^libreportal (setup|backup\s+all|backup\s+system|backup\s+verify|backup\s+location|backup\s+repo|restore\s+migrate\s+system|restore\s+migrate\s+discover|restore\s+first-run|webui|config|update|verify|system\s+(reclaim|image|health|network))\b/.test(task.command);
},
getTaskTypeIcon(task) {
if (!task.type) return { icon: '⚙️', class: 'custom' };