From b23b3e4d2102c274e4e1dd4bdc4ca6cfec42c354 Mon Sep 17 00:00:00 2001 From: syuilo Date: Wed, 19 Feb 2020 06:36:50 +0900 Subject: Fix #5984 --- src/misc/reaction-lib.ts | 22 ++++++++++++++++++++++ 1 file changed, 22 insertions(+) (limited to 'src/misc') diff --git a/src/misc/reaction-lib.ts b/src/misc/reaction-lib.ts index eba57ea303..c525d89385 100644 --- a/src/misc/reaction-lib.ts +++ b/src/misc/reaction-lib.ts @@ -20,6 +20,28 @@ export async function getFallbackReaction(): Promise { return meta.useStarForReactionFallback ? '⭐' : '👍'; } +export function convertLegacyReactions(reactions: Record) { + const _reactions = {} as Record; + + for (const reaction of Object.keys(reactions)) { + if (Object.keys(legacy10).includes(reaction)) { + if (_reactions[legacy10[reaction]]) { + _reactions[legacy10[reaction]] += reactions[reaction]; + } else { + _reactions[legacy10[reaction]] = reactions[reaction]; + } + } else { + if (_reactions[reaction]) { + _reactions[reaction] += reactions[reaction]; + } else { + _reactions[reaction] = reactions[reaction]; + } + } + } + + return _reactions; +} + export async function toDbReaction(reaction?: string | null): Promise { if (reaction == null) return await getFallbackReaction(); -- cgit v1.2.3-freya