fix: autoDeleteOldPrints and saveInstancePrints

This commit is contained in:
pa
2025-07-15 21:15:30 +09:00
committed by Natsumi
parent 0ab0378678
commit 53723d37b0
2 changed files with 2 additions and 2 deletions

View File

@@ -517,7 +517,7 @@ export const useGalleryStore = defineStore('Gallery', () => {
}
async function tryDeleteOldPrints() {
if (!advancedSettingsStore.deleteOldPrints) {
if (!advancedSettingsStore.autoDeleteOldPrints) {
return;
}
await refreshPrintTable();

View File

@@ -781,7 +781,7 @@ export const useGameLogStore = defineStore('GameLog', () => {
console.error(err);
}
}
if (advancedSettingsStore.saveInstanceEmoji) {
if (advancedSettingsStore.saveInstancePrints) {
try {
let printId = '';
const url1 = new URL(gameLog.url);