diff --git a/src/utils/exportData.js b/src/utils/exportData.js index ebf7626c8..7a107431f 100644 --- a/src/utils/exportData.js +++ b/src/utils/exportData.js @@ -211,7 +211,11 @@ export async function fetchMetadata( const clients = store.getState().connections.clients; const selectedDevice = store.getState().connections.selectedDevice; for (let client of clients) { - if (!selectedDevice || !client.id.includes(selectedDevice.serial)) { + if ( + !selectedDevice || + selectedDevice.isArchived || + !client.id.includes(selectedDevice.serial) + ) { continue; } for (let plugin of client.plugins) {