Only retrieve folder list when vault is unlocked
This commit is contained in:
parent
686c7fbfff
commit
e0240c6884
|
@ -70,16 +70,18 @@ document.addEventListener('DOMContentLoaded', () => {
|
||||||
});
|
});
|
||||||
});
|
});
|
||||||
|
|
||||||
const responseFoldersCommand = 'notificationBarGetFoldersList';
|
if (!isVaultLocked) {
|
||||||
chrome.runtime.onMessage.addListener((msg) => {
|
const responseFoldersCommand = 'notificationBarGetFoldersList';
|
||||||
if (msg.command === responseFoldersCommand && msg.data) {
|
chrome.runtime.onMessage.addListener((msg) => {
|
||||||
fillSelectorWithFolders(msg.data.folders);
|
if (msg.command === responseFoldersCommand && msg.data) {
|
||||||
}
|
fillSelectorWithFolders(msg.data.folders);
|
||||||
});
|
}
|
||||||
sendPlatformMessage({
|
});
|
||||||
command: 'bgGetDataForTab',
|
sendPlatformMessage({
|
||||||
responseCommand: responseFoldersCommand
|
command: 'bgGetDataForTab',
|
||||||
});
|
responseCommand: responseFoldersCommand
|
||||||
|
});
|
||||||
|
}
|
||||||
} else if (getQueryVariable('change')) {
|
} else if (getQueryVariable('change')) {
|
||||||
setContent(document.getElementById('template-change'));
|
setContent(document.getElementById('template-change'));
|
||||||
var changeButton = document.querySelector('#template-change-clone .change-save');
|
var changeButton = document.querySelector('#template-change-clone .change-save');
|
||||||
|
|
Loading…
Reference in New Issue