|
@ -848,7 +848,7 @@ export default class ContactQRScanShow extends Vue { |
|
|
if (stopAsking) { |
|
|
if (stopAsking) { |
|
|
const platformService = PlatformServiceFactory.getInstance(); |
|
|
const platformService = PlatformServiceFactory.getInstance(); |
|
|
await platformService.dbExec( |
|
|
await platformService.dbExec( |
|
|
"UPDATE settings SET hideRegisterPromptOnNewContact = ? WHERE key = ?", |
|
|
"UPDATE settings SET hideRegisterPromptOnNewContact = ? WHERE id = ?", |
|
|
[stopAsking, MASTER_SETTINGS_KEY], |
|
|
[stopAsking, MASTER_SETTINGS_KEY], |
|
|
); |
|
|
); |
|
|
if (USE_DEXIE_DB) { |
|
|
if (USE_DEXIE_DB) { |
|
@ -863,7 +863,7 @@ export default class ContactQRScanShow extends Vue { |
|
|
if (stopAsking) { |
|
|
if (stopAsking) { |
|
|
const platformService = PlatformServiceFactory.getInstance(); |
|
|
const platformService = PlatformServiceFactory.getInstance(); |
|
|
await platformService.dbExec( |
|
|
await platformService.dbExec( |
|
|
"UPDATE settings SET hideRegisterPromptOnNewContact = ? WHERE key = ?", |
|
|
"UPDATE settings SET hideRegisterPromptOnNewContact = ? WHERE id = ?", |
|
|
[stopAsking, MASTER_SETTINGS_KEY], |
|
|
[stopAsking, MASTER_SETTINGS_KEY], |
|
|
); |
|
|
); |
|
|
if (USE_DEXIE_DB) { |
|
|
if (USE_DEXIE_DB) { |
|
|