mirror of
https://github.com/LemmyNet/lemmy-ui.git
synced 2024-11-21 22:27:11 +00:00
Make uploads only viewable to oneself (#2540)
This commit is contained in:
parent
35b3cec2d4
commit
2f91700074
|
@ -1 +1 @@
|
||||||
Subproject commit 866cf9f6469f99598be93dcce5e40f85d202ac22
|
Subproject commit c3594b4fc024c2ac6a8dab7a97fda5350a5d77e1
|
|
@ -301,6 +301,10 @@ export class Profile extends Component<ProfileRouteProps, ProfileState> {
|
||||||
|
|
||||||
fetchUploadsToken?: symbol;
|
fetchUploadsToken?: symbol;
|
||||||
async fetchUploads(props: ProfileRouteProps) {
|
async fetchUploads(props: ProfileRouteProps) {
|
||||||
|
if (!this.amCurrentUser) {
|
||||||
|
return;
|
||||||
|
}
|
||||||
|
|
||||||
const token = (this.fetchUploadsToken = Symbol());
|
const token = (this.fetchUploadsToken = Symbol());
|
||||||
const { page } = props;
|
const { page } = props;
|
||||||
this.setState({ uploadsRes: LOADING_REQUEST });
|
this.setState({ uploadsRes: LOADING_REQUEST });
|
||||||
|
@ -553,7 +557,7 @@ export class Profile extends Component<ProfileRouteProps, ProfileState> {
|
||||||
{this.getRadio(PersonDetailsView.Comments)}
|
{this.getRadio(PersonDetailsView.Comments)}
|
||||||
{this.getRadio(PersonDetailsView.Posts)}
|
{this.getRadio(PersonDetailsView.Posts)}
|
||||||
{this.amCurrentUser && this.getRadio(PersonDetailsView.Saved)}
|
{this.amCurrentUser && this.getRadio(PersonDetailsView.Saved)}
|
||||||
{this.getRadio(PersonDetailsView.Uploads)}
|
{this.amCurrentUser && this.getRadio(PersonDetailsView.Uploads)}
|
||||||
</div>
|
</div>
|
||||||
);
|
);
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in a new issue