added rebuild to sym keys

This commit is contained in:
2025-04-06 05:45:59 +03:00
parent 881d848d4d
commit 9d890cdcd5
4 changed files with 8 additions and 7 deletions

View File

@@ -79,7 +79,7 @@ export const AdminSpaceInner = ({
const res = await fetch(
`${getBaseApiReact()}/arbitrary/DOCUMENT_PRIVATE/${
getLatestPublish.name
}/${getLatestPublish.identifier}?encoding=base64`
}/${getLatestPublish.identifier}?encoding=base64&rebuild=true`
);
data = await res.text();

View File

@@ -66,7 +66,7 @@ export const CreateCommonSecret = ({groupId, secretKey, isOwner, myAddress, sec
const res = await fetch(
`${getBaseApiReact()}/arbitrary/DOCUMENT_PRIVATE/${publish.name}/${
publish.identifier
}?encoding=base64`
}?encoding=base64&rebuild=true`
);
const data = await res.text();

View File

@@ -704,11 +704,12 @@ export const Group = ({
if (dataFromStorage) {
data = dataFromStorage;
} else {
// const shouldRebuild = !secretKeyPublishDate || (publish?.update && publish?.updated > secretKeyPublishDate)
setIsLoadingGroupMessage("Downloading encryption keys");
const res = await fetch(
`${getBaseApiReact()}/arbitrary/DOCUMENT_PRIVATE/${publish.name}/${
publish.identifier
}?encoding=base64`
}?encoding=base64&rebuild=true`
);
data = await res.text();
}