chore: comment to handle error on sha256 fetch

This commit is contained in:
Zack Spear
2024-02-02 15:00:59 -08:00
committed by Zack Spear
parent 2cbbd5ee40
commit a9c4d7d5dd

View File

@@ -133,6 +133,9 @@ export const useUpdateOsActionsStore = defineStore('updateOsActions', () => {
throw new Error('No payload.sha256 provided');
}
try {
/**
* @todo correctly handle an error and show message to try again
*/
const response = await getOsReleaseBySha256(payload);
console.debug('[getReleaseFromKeyServer]', response);
return response;