From 09087040e9bd7d9d0d2f1175f426400cb73760d1 Mon Sep 17 00:00:00 2001 From: Zack Spear Date: Fri, 16 Aug 2024 07:08:42 -0700 Subject: [PATCH] fix: flash backup activated detection in account payload (#898) fix: flash backup activated detection in account payload to warn users to download back before unregistering with connect --- web/store/server.ts | 1 + web/types/server.ts | 1 + 2 files changed, 2 insertions(+) diff --git a/web/store/server.ts b/web/store/server.ts index c535219b1..de55882a2 100644 --- a/web/store/server.ts +++ b/web/store/server.ts @@ -268,6 +268,7 @@ export const useServerStore = defineStore('server', () => { connectPluginVersion: connectPluginVersion.value, description: description.value, expireTime: expireTime.value, + flashBackupActivated: flashBackupActivated.value, flashProduct: flashProduct.value, flashVendor: flashVendor.value, guid: guid.value, diff --git a/web/types/server.ts b/web/types/server.ts index 6c284071c..7e20748b2 100644 --- a/web/types/server.ts +++ b/web/types/server.ts @@ -124,6 +124,7 @@ export interface ServerAccountCallbackSendPayload { description?: string; deviceCount?: number; expireTime?: number; + flashBackupActivated?: boolean; flashProduct?: string; flashVendor?: string; guid?: string;