hot fix for undefined id and unused file stuff in sceneprofile

This commit is contained in:
Martina 2021-09-15 11:18:48 -07:00
parent 793883e76c
commit 8207ba4bcc
2 changed files with 11 additions and 22 deletions

View File

@ -62,13 +62,11 @@ export const getIdFromCookieValue = (token) => {
if (!Strings.isEmpty(token)) {
try {
const decoded = JWT.verify(token, Environment.JWT_SECRET);
id = decoded.id;
return decoded.id;
} catch (e) {
Logging.error(e.message);
}
}
return id;
};
export const getIdFromCookie = (req) => {

View File

@ -158,26 +158,17 @@ export default class SceneProfile extends React.Component {
);
}
let name = user.data.name || `@${user.username}`;
let description, title, file, image;
if (this.props.page.params?.cid) {
file = user.library.find((file) => file.cid === this.props.page.params.cid);
}
if (file) {
title = `${file.data.name || file.filename}`;
description = file.data.body ? file.data.body : `View ${title}, a file from ${name} on Slate`;
image = Utilities.getImageUrlIfExists(file, Constants.linkPreviewSizeLimit);
let description, title;
const image = user.photo;
if (user.body) {
description = `${name}. ${user.body}`;
} else {
image = user.data.photo;
if (user.data.body) {
description = `${name}. ${user.data.body}`;
} else {
description = `View collections and content from ${name} on Slate`;
}
if (user.data.name) {
title = `${user.data.name} (@${user.username}) • Slate`;
} else {
title = `${user.username} • Slate`;
}
description = `View collections and content from ${name} on Slate`;
}
if (user.name) {
title = `${user.name} (@${user.username}) • Slate`;
} else {
title = `${user.username} • Slate`;
}
return (