Skip to content

Commit

Permalink
fix: pass device info to NfcTools
Browse files Browse the repository at this point in the history
  • Loading branch information
Slipn3r committed Nov 8, 2023
1 parent 81ddda8 commit a3d8e69
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion frontend/src/pages/NfcTools.vue
Original file line number Diff line number Diff line change
Expand Up @@ -54,6 +54,7 @@ import { startMfkey } from '../util/mfkey32v2/mfkey'
const props = defineProps({
flipper: Object,
connected: Boolean,
info: Object,
rpcActive: Boolean
})
Expand Down Expand Up @@ -124,7 +125,7 @@ const mfkeyFlipperStart = async () => {
let res = await props.flipper.RPC('storageRead', { path: '/ext/nfc/.mfkey32.log' })
.catch(error => {
rpcErrorHandler(error, 'storageRead')
mfkeyStatus.value = 'No new logs available'
mfkeyStatus.value = 'Mfkey log file not found'
flags.value.mfkeyFlipperInProgress = false
})
.finally(() => {
Expand Down

0 comments on commit a3d8e69

Please sign in to comment.