mirror of
https://github.com/mastodon/mastodon.git
synced 2025-05-11 20:21:10 +00:00
Fix incorrect locked account warning in composer (#34312)
This commit is contained in:
parent
74ee96505a
commit
04a9252a93
|
@ -11,7 +11,7 @@ import { HASHTAG_PATTERN_REGEX } from 'mastodon/utils/hashtags';
|
||||||
|
|
||||||
const selector = createSelector(
|
const selector = createSelector(
|
||||||
(state: RootState) => state.compose.get('privacy') as string,
|
(state: RootState) => state.compose.get('privacy') as string,
|
||||||
(state: RootState) => !!state.compose.getIn(['accounts', me, 'locked']),
|
(state: RootState) => !!state.accounts.getIn([me, 'locked']),
|
||||||
(state: RootState) => state.compose.get('text') as string,
|
(state: RootState) => state.compose.get('text') as string,
|
||||||
(privacy, locked, text) => ({
|
(privacy, locked, text) => ({
|
||||||
needsLockWarning: privacy === 'private' && !locked,
|
needsLockWarning: privacy === 'private' && !locked,
|
||||||
|
|
Loading…
Reference in New Issue
Block a user