Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

fix: gdpr export polling #10158

Merged
merged 1 commit into from
Dec 13, 2023
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
6 changes: 6 additions & 0 deletions changelog/unreleased/bugfix-gdpr-export-polling
Original file line number Diff line number Diff line change
@@ -0,0 +1,6 @@
Bugfix: GDPR export polling

Periodically checking for a processed GDPR export in the account menu has been fixed.

https://github.com/owncloud/web/pull/10158
https://github.com/owncloud/web/issues/8862
3 changes: 2 additions & 1 deletion packages/web-runtime/src/components/Account/GdprExport.vue
Original file line number Diff line number Diff line change
Expand Up @@ -52,7 +52,7 @@ export default defineComponent({
const { downloadFile } = useDownloadFile()

const loading = ref(true)
const checkInterval = ref()
const checkInterval = ref<ReturnType<typeof setInterval>>()
const exportFile = ref<Resource>()
const exportInProgress = ref(false)

Expand Down Expand Up @@ -80,6 +80,7 @@ export default defineComponent({
exportInProgress.value = false
if (unref(checkInterval)) {
clearInterval(unref(checkInterval))
checkInterval.value = undefined
}
} catch (e) {
if (e.statusCode !== 404) {
Expand Down