We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent e0f18dc commit 2035829Copy full SHA for 2035829
src/Utils/SnoowrapUtils.ts
@@ -486,7 +486,7 @@ export const getSubmissionFromComment = async (item: Comment): Promise<Submissio
486
export const getAttributionIdentifier = (sub: Submission, useParentMediaDomain = false): DomainInfo => {
487
let domain: string = '';
488
let displayDomain: string = '';
489
- let domainIdents: string[] = [sub.domain];
+ let domainIdents: string[] = useParentMediaDomain ? [sub.domain] : [];
490
let provider: string | undefined;
491
if (!useParentMediaDomain && sub.secure_media?.oembed !== undefined) {
492
const {
0 commit comments