Sticker improvements

This commit is contained in:
Evan Hahn 2020-08-31 11:29:22 -05:00 committed by Josh Perez
parent b5e1e3a345
commit fd06ac9d57
3 changed files with 11 additions and 6 deletions

View file

@ -1384,7 +1384,9 @@ function handleSgnlHref(incomingHref) {
console.log('Opening sticker pack from sgnl protocol link');
const packId = args.get('pack_id');
const packKeyHex = args.get('pack_key');
const packKey = Buffer.from(packKeyHex, 'hex').toString('base64');
const packKey = packKeyHex
? Buffer.from(packKeyHex, 'hex').toString('base64')
: '';
mainWindow.webContents.send('show-sticker-pack', { packId, packKey });
} else {
console.error('Unhandled sgnl link');