Skip to content

Commit

Permalink
timeline id util: fix single post view
Browse files Browse the repository at this point in the history
turns out you should research things.
  • Loading branch information
marcustyphoon committed Sep 26, 2024
1 parent a1e7f76 commit 4710041
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/utils/timeline_id.js
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ export const channelSelector = `${keyToCss('bar')} ~ *`;

const exactly = string => `^${string}$`;
const anyBlog = '[a-z0-9-]{1,32}';
const anyPostId = '[0-9]{1,18}';
const anyPostId = '[0-9]{1,19}';
const uuidV4 = '[a-f0-9]{8}-[a-f0-9]{4}-4[a-f0-9]{3}-[a-f0-9]{4}-[a-f0-9]{12}';

export const followingTimelineFilter = ({ dataset: { timeline, timelineId } }) =>
Expand Down

0 comments on commit 4710041

Please sign in to comment.