touch protected session during note update

This commit is contained in:
zadam
2020-04-25 11:09:07 +02:00
parent ac608b9334
commit 71d248cd87
6 changed files with 18 additions and 7 deletions

View File

@@ -39,9 +39,16 @@ function touchProtectedSession() {
}
}
function touchProtectedSessionIfNecessary(note) {
if (note && note.isProtected && isProtectedSessionAvailable()) {
touchProtectedSession();
}
}
export default {
setProtectedSessionId,
resetProtectedSession,
isProtectedSessionAvailable,
touchProtectedSession
touchProtectedSession,
touchProtectedSessionIfNecessary
};