Skip to content

Commit

Permalink
Actually stick the device info in the storage key for flashing backups
Browse files Browse the repository at this point in the history
  • Loading branch information
obra committed Sep 25, 2023
1 parent 4ffd9b1 commit 9b1f54b
Showing 1 changed file with 3 additions and 1 deletion.
4 changes: 3 additions & 1 deletion src/renderer/ActiveDevice.js
Original file line number Diff line number Diff line change
Expand Up @@ -229,7 +229,9 @@ export function ActiveDevice() {

const key =
".internal.backups.save-file" +
this.focusDeviceDescriptor().info +
this.focusDeviceDescriptor().info.vendor +
"-" +
this.focusDeviceDescriptor().info.product +
Date.now() +
uuidv4();
console.debug("Writing structured EEPROM data to session storage", {
Expand Down

0 comments on commit 9b1f54b

Please sign in to comment.