diff --git a/src/utils/agreement-util.ts b/src/utils/agreement-util.ts index ed72daaf..5ef7921b 100644 --- a/src/utils/agreement-util.ts +++ b/src/utils/agreement-util.ts @@ -10,7 +10,7 @@ import { import { sortAlphabetically } from './sort-util' export function getPostTitle(postTitle: string): string { - const regex = /^(post\s\d{1,2}:\s|\d{1,2}:\s)/i + const regex = /^(post\s\d{1,2}:\s|\d{1,2}:\s|\d{1,2}\.\s)/i return postTitle.replace(regex, '') }