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

Set correct url to archive #161

Merged
merged 1 commit into from
Dec 29, 2024
Merged
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
5 changes: 3 additions & 2 deletions src/app/pages/account/account.page.html
Original file line number Diff line number Diff line change
Expand Up @@ -308,7 +308,8 @@ <h3>Fields</h3>
<div>
You can request an archive containing your posts and uploaded media. The exported data will be provided
in the ActivityPub format, ensuring compatibility with any compliant software. Archives may be requested
once every 30 days.
once every 30 days. Archives are generated once a day, and you will be notified via email once your
archive is ready.
</div>
<div class="text-right">
@if (showRequestArchiveButton()) {
Expand Down Expand Up @@ -379,7 +380,7 @@ <h3>Fields</h3>
<th mat-header-cell *matHeaderCellDef></th>
<td mat-cell *matCellDef="let element">
@if (element.status === archiveStatus.Ready) {
<a href="#">Download your archive</a>
<a [href]="element.fileName" target="_blank">Download your archive</a>
}
</td>
</ng-container>
Expand Down
Loading