A few fixes for the emoji bundled with stickers
This commit is contained in:
parent
7a1686b915
commit
fde917c983
6 changed files with 30 additions and 8 deletions
|
@ -184,10 +184,17 @@ window.encryptAndUpload = async (
|
||||||
|
|
||||||
return s;
|
return s;
|
||||||
});
|
});
|
||||||
const coverSticker = new Proto.StickerPack.Sticker();
|
|
||||||
coverSticker.id =
|
const coverStickerId =
|
||||||
uniqueStickers.length === stickers.length ? 0 : uniqueStickers.length - 1;
|
uniqueStickers.length === stickers.length ? 0 : uniqueStickers.length - 1;
|
||||||
coverSticker.emoji = '';
|
const coverStickerData = stickers[coverStickerId];
|
||||||
|
const coverSticker = new Proto.StickerPack.Sticker();
|
||||||
|
coverSticker.id = coverStickerId;
|
||||||
|
if (coverStickerData.emoji) {
|
||||||
|
coverSticker.emoji = coverStickerData.emoji;
|
||||||
|
} else {
|
||||||
|
coverSticker.emoji = '';
|
||||||
|
}
|
||||||
manifestProto.cover = coverSticker;
|
manifestProto.cover = coverSticker;
|
||||||
|
|
||||||
const encryptedManifest = await encrypt(
|
const encryptedManifest = await encrypt(
|
||||||
|
|
|
@ -731,11 +731,10 @@ export class MessageModel extends window.Backbone.Model<MessageAttributesType> {
|
||||||
|
|
||||||
const stickerData = this.get('sticker');
|
const stickerData = this.get('sticker');
|
||||||
if (stickerData) {
|
if (stickerData) {
|
||||||
const sticker = Stickers.getSticker(
|
const emoji =
|
||||||
stickerData.packId,
|
Stickers.getSticker(stickerData.packId, stickerData.stickerId)?.emoji ||
|
||||||
stickerData.stickerId
|
stickerData?.emoji;
|
||||||
);
|
|
||||||
const { emoji } = sticker || {};
|
|
||||||
if (!emoji) {
|
if (!emoji) {
|
||||||
log.warn('Unable to get emoji for sticker');
|
log.warn('Unable to get emoji for sticker');
|
||||||
}
|
}
|
||||||
|
|
|
@ -299,6 +299,7 @@ describe('processDataMessage', () => {
|
||||||
packId: new Uint8Array([1, 2, 3]),
|
packId: new Uint8Array([1, 2, 3]),
|
||||||
packKey: new Uint8Array([4, 5, 6]),
|
packKey: new Uint8Array([4, 5, 6]),
|
||||||
stickerId: 1,
|
stickerId: 1,
|
||||||
|
emoji: '💯',
|
||||||
data: UNPROCESSED_ATTACHMENT,
|
data: UNPROCESSED_ATTACHMENT,
|
||||||
},
|
},
|
||||||
});
|
});
|
||||||
|
@ -307,6 +308,7 @@ describe('processDataMessage', () => {
|
||||||
packId: '010203',
|
packId: '010203',
|
||||||
packKey: 'BAUG',
|
packKey: 'BAUG',
|
||||||
stickerId: 1,
|
stickerId: 1,
|
||||||
|
emoji: '💯',
|
||||||
data: PROCESSED_ATTACHMENT,
|
data: PROCESSED_ATTACHMENT,
|
||||||
});
|
});
|
||||||
});
|
});
|
||||||
|
|
1
ts/textsecure/Types.d.ts
vendored
1
ts/textsecure/Types.d.ts
vendored
|
@ -171,6 +171,7 @@ export type ProcessedSticker = {
|
||||||
packId?: string;
|
packId?: string;
|
||||||
packKey?: string;
|
packKey?: string;
|
||||||
stickerId?: number;
|
stickerId?: number;
|
||||||
|
emoji?: string;
|
||||||
data?: ProcessedAttachment;
|
data?: ProcessedAttachment;
|
||||||
};
|
};
|
||||||
|
|
||||||
|
|
|
@ -212,6 +212,7 @@ export function processSticker(
|
||||||
packId: sticker.packId ? Bytes.toHex(sticker.packId) : undefined,
|
packId: sticker.packId ? Bytes.toHex(sticker.packId) : undefined,
|
||||||
packKey: sticker.packKey ? Bytes.toBase64(sticker.packKey) : undefined,
|
packKey: sticker.packKey ? Bytes.toBase64(sticker.packKey) : undefined,
|
||||||
stickerId: dropNull(sticker.stickerId),
|
stickerId: dropNull(sticker.stickerId),
|
||||||
|
emoji: dropNull(sticker.emoji),
|
||||||
data: processAttachment(sticker.data),
|
data: processAttachment(sticker.data),
|
||||||
};
|
};
|
||||||
}
|
}
|
||||||
|
|
|
@ -449,6 +449,12 @@ export async function downloadEphemeralPack(
|
||||||
proto.stickers,
|
proto.stickers,
|
||||||
sticker => !isNumber(sticker.id) || sticker.id === coverStickerId
|
sticker => !isNumber(sticker.id) || sticker.id === coverStickerId
|
||||||
);
|
);
|
||||||
|
const coverSticker = proto.stickers.filter(
|
||||||
|
sticker => isNumber(sticker.id) && sticker.id === coverStickerId
|
||||||
|
);
|
||||||
|
if (coverSticker[0] && !coverProto.emoji) {
|
||||||
|
coverProto.emoji = coverSticker[0].emoji;
|
||||||
|
}
|
||||||
|
|
||||||
const coverIncludedInList = nonCoverStickers.length < stickerCount;
|
const coverIncludedInList = nonCoverStickers.length < stickerCount;
|
||||||
|
|
||||||
|
@ -652,6 +658,12 @@ async function doDownloadStickerPack(
|
||||||
proto.stickers,
|
proto.stickers,
|
||||||
sticker => !isNumber(sticker.id) || sticker.id === coverStickerId
|
sticker => !isNumber(sticker.id) || sticker.id === coverStickerId
|
||||||
);
|
);
|
||||||
|
const coverSticker = proto.stickers.filter(
|
||||||
|
sticker => isNumber(sticker.id) && sticker.id === coverStickerId
|
||||||
|
);
|
||||||
|
if (coverSticker[0] && !coverProto.emoji) {
|
||||||
|
coverProto.emoji = coverSticker[0].emoji;
|
||||||
|
}
|
||||||
|
|
||||||
coverIncludedInList = nonCoverStickers.length < stickerCount;
|
coverIncludedInList = nonCoverStickers.length < stickerCount;
|
||||||
|
|
||||||
|
|
Loading…
Add table
Reference in a new issue