Skip to content

Commit

Permalink
LOL
Browse files Browse the repository at this point in the history
  • Loading branch information
harryitz committed Jul 10, 2024
1 parent cfc7eb7 commit 03dad41
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/EmojiKitchen.ts
Original file line number Diff line number Diff line change
Expand Up @@ -39,7 +39,7 @@ export async function mergeEmoji(emoji_1: string, emoji_2: string): Promise<Emoj

const res_1_status = res_1.status
const res_2_status = res_2.status
if (res_1_status == 404 || res_2_status == 404) return undefined;
if (res_1_status == 404 && res_2_status == 404) return undefined;

const url = (res_1_status == 404) ? url_2 : url_1;

Expand Down

0 comments on commit 03dad41

Please sign in to comment.