Skip to content

Commit

Permalink
prevent message for browser_mod/recall_id service call
Browse files Browse the repository at this point in the history
  • Loading branch information
Garfonso committed Jan 17, 2024
1 parent 6f9a4b5 commit 4a2c522
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 1 deletion.
3 changes: 3 additions & 0 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -473,6 +473,9 @@ After that checkout modified version in `./build` folder. Then.
PLACEHOLDER for next version:
### **WORK IN PROGRESS**
-->
### **WORK IN PROGRESS**
* (Garfonso) prevent warning for browser_mod/recall_id service call

### 4.1.2 (2024-01-09)
* (Garfonso) fix: time in timestamp display

Expand Down
2 changes: 1 addition & 1 deletion lib/modules/browser_mod.js
Original file line number Diff line number Diff line change
Expand Up @@ -323,7 +323,7 @@ class BrowserModModule {
// console.log('Incoming browser_mod message:');
// console.dir(message, {depth: null});

if (!message.browserID) {
if (!message.browserID && method !== 'recall_id') {
this.adapter.log.warn('No browser ID in browser_mod request: ' + JSON.stringify(message));
return;
}
Expand Down

0 comments on commit 4a2c522

Please sign in to comment.