A collection of Osprey rules for ATProto

adjust regex for bsky store rule

+2 -2
+1 -1
rules/record/post/bsky_store.sml
··· 8 8 9 9 _AgeGate = AccountAgeSecondsUnwrapped <= Day or PostsCount <= 5 10 10 11 - _BskyStoreDisplayName = RegexMatch(target=DisplayName, pattern=r'(?i)^bl?sky ? sto?re$') 11 + _BskyStoreDisplayName = RegexMatch(target=DisplayName, pattern=r'(?i)^bl?sky ?sto?re$') 12 12 13 13 _DisplayNameGate = _BskyStoreDisplayName == True and _AgeGate 14 14
+1 -1
rules/record/profile/bsky_store.sml
··· 6 6 ], 7 7 ) 8 8 9 - _BskyStoreDisplayName = RegexMatch(target=ProfileDisplayName, pattern=r'(?i)^bl?sky ? sto?re$') 9 + _BskyStoreDisplayName = RegexMatch(target=ProfileDisplayName, pattern=r'(?i)^bl?sky ?sto?re$') 10 10 11 11 _Gate = _BskyStoreDisplayName == True and (AccountAgeSecondsUnwrapped <= Day or PostsCount <= 5) 12 12