chore: fix log copy

This commit is contained in:
Zack Spear
2023-08-03 17:23:41 -07:00
parent fefeb59103
commit 7b64e5e08b

View File

@@ -672,7 +672,7 @@ export const useServerStore = defineStore('server', () => {
};
});
watch(cloudError, (newVal, oldVal) => {
console.debug('[watch:deprecatedUnraidSSL]', newVal, oldVal);
console.debug('[watch:cloudError]', newVal, oldVal);
if (oldVal && oldVal.ref) { errorsStore.removeErrorByRef(oldVal.ref); }
if (newVal) { errorsStore.setError(newVal); }
});