Skip to content

Commit

Permalink
Not case-sensitive
Browse files Browse the repository at this point in the history
  • Loading branch information
molly committed Dec 4, 2023
1 parent c220d8f commit 869e7f5
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions functions/src/social.ts
Original file line number Diff line number Diff line change
Expand Up @@ -13,8 +13,8 @@ const ID_FORMATS = {
twitter: /\d+/,
mastodon: /\d+/,
bluesky: /[a-z0-9]+/,
instagram: /[a-z0-9]+/,
threads: /[a-z0-9]+/,
instagram: /[a-zA-Z0-9]+/,
threads: /[a-zA-Z0-9]+/,
};

export const addSocialPostIds = functions.https.onRequest(async (req, res) => {
Expand Down

0 comments on commit 869e7f5

Please sign in to comment.