mirror of
https://github.com/keepassxreboot/keepassxc-browser.git
synced 2026-03-11 08:54:43 +00:00
Add error messages
This commit is contained in:
parent
e6dfb5bd16
commit
196ec78763
1 changed files with 3 additions and 0 deletions
|
|
@ -96,6 +96,7 @@ class Message {
|
|||
|
||||
keepassClient.sendNativeMessage = async function(request, enableTimeout = false, timeoutValue) {
|
||||
if (!keepassClient.nativePort) {
|
||||
logError('No native messaging port defined.');
|
||||
return;
|
||||
}
|
||||
|
||||
|
|
@ -132,6 +133,8 @@ keepassClient.handleNativeMessage = async function(response) {
|
|||
return;
|
||||
}
|
||||
}
|
||||
|
||||
logError('Corresponding request not found in the message buffer for response: ', response);
|
||||
});
|
||||
};
|
||||
|
||||
|
|
|
|||
Loading…
Reference in a new issue