Skip to content

Commit

Permalink
[yufushiro] 埋め込みカードの .expanded を常に無効化する
Browse files Browse the repository at this point in the history
  • Loading branch information
yufushiro committed Dec 13, 2024
1 parent 94a17f8 commit ed73ff0
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -137,7 +137,7 @@ export default class Card extends PureComponent {
const provider = card.get('provider_name').length === 0 ? decodeIDNA(getHostname(card.get('url'))) : card.get('provider_name');
const interactive = card.get('type') === 'video';
const language = card.get('language') || '';
const largeImage = (card.get('image')?.length > 0 && card.get('width') > card.get('height')) || interactive;
const largeImage = false;
const showAuthor = !!card.getIn(['authors', 0, 'accountId']);

const description = (
Expand Down

0 comments on commit ed73ff0

Please sign in to comment.