diff --git a/src/Journals/JournalMembers.tsx b/src/Journals/JournalMembers.tsx index 41c9d36..ef7054c 100644 --- a/src/Journals/JournalMembers.tsx +++ b/src/Journals/JournalMembers.tsx @@ -48,6 +48,7 @@ class JournalMembers extends React.PureComponent { const { members, revokeUser, addMemberOpen } = this.state; const info = syncJournal.collection; + const sharingAllowed = syncJournal.journal.version > 1; return ( <> @@ -86,12 +87,24 @@ class JournalMembers extends React.PureComponent { { addMemberOpen && - this.setState({ addMemberOpen: false })} - /> + (sharingAllowed ? + this.setState({ addMemberOpen: false })} + /> + : + this.setState({ addMemberOpen: false })} + onClose={() => this.setState({ addMemberOpen: false })} + > + Sharing of old-style journals is not allowed. In order to share this journal, create a new one, and copy its contents over using the "import" dialog. If you are experiencing any issues, please contact support. + + ) } );