mirror of
https://github.com/streetwriters/notesnook.git
synced 2025-12-22 22:49:45 +01:00
fix syncing from note menu
This commit is contained in:
@@ -595,20 +595,23 @@ export const ActionSheetComponent = ({
|
||||
);
|
||||
return;
|
||||
}
|
||||
if (user?.lastSynced < note?.dateEdited) {
|
||||
if (user?.lastSynced < note?.dateEdited || !user.lastSynced) {
|
||||
setRefreshing(true);
|
||||
try {
|
||||
let user = await db.user.get();
|
||||
dispatch({type: Actions.USER, user: user});
|
||||
await db.sync();
|
||||
localRefresh();
|
||||
ToastEvent.show('Note synced', 'success', 'local');
|
||||
} catch (e) {
|
||||
ToastEvent.show(e.message, 'error', 'local');
|
||||
} finally {
|
||||
let user = await db.user.get();
|
||||
dispatch({type: Actions.USER, user: user});
|
||||
dispatch({type: Actions.ALL});
|
||||
setRefreshing(false);
|
||||
}
|
||||
dispatch({type: Actions.ALL});
|
||||
|
||||
} else {
|
||||
console.log('here',user?.lastSynced,user?.lastSynced < note?.dateEdited)
|
||||
}
|
||||
};
|
||||
|
||||
|
||||
Reference in New Issue
Block a user