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
This commit is contained in:
Zack Spear
2024-08-16 07:08:42 -07:00
committed by GitHub
parent 4423829911
commit 09087040e9
2 changed files with 2 additions and 0 deletions

View File

@@ -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,

View File

@@ -124,6 +124,7 @@ export interface ServerAccountCallbackSendPayload {
description?: string;
deviceCount?: number;
expireTime?: number;
flashBackupActivated?: boolean;
flashProduct?: string;
flashVendor?: string;
guid?: string;