1
0
mirror of https://github.com/laurent22/joplin.git synced 2025-07-13 00:10:37 +02:00

Mobile: Fixes #11325: Fix error on creating new notes if the user is a share recipient (#11326)

This commit is contained in:
Henry Heino
2024-11-08 07:34:39 -08:00
committed by GitHub
parent 9fb104ec7c
commit 1fca7eddcb
2 changed files with 8 additions and 2 deletions

View File

@ -387,7 +387,7 @@ describe('models/Note', () => {
expect(conflictedNote.conflict_original_id).toBe(origNote.id);
expect(conflictedNote.parent_id).toBe(folder.id);
expect(conflictedNote.is_shared).toBeUndefined();
expect(conflictedNote.share_id).toBeUndefined();
expect(conflictedNote.share_id).toBe('');
});
it('should copy conflicted note to target folder and cancel conflict', (async () => {