Skip to content

Commit

Permalink
typo and comments for PR
Browse files Browse the repository at this point in the history
  • Loading branch information
Benibur authored and Crash-- committed Oct 8, 2020
1 parent f6e8e64 commit 5cd2a90
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 10 deletions.
2 changes: 1 addition & 1 deletion src/_locales/fr/messages.json
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@
"message": "Créer un compte"
},
"login": {
"message": "Me connecter"
"message": "Se connecter"
},
"cancel": {
"message": "Annuler"
Expand Down
10 changes: 1 addition & 9 deletions src/background/runtime.background.ts
Original file line number Diff line number Diff line change
Expand Up @@ -83,15 +83,7 @@ export default class RuntimeBackground {
'msg': msg,
'sender': sender
});
*/
console.log('runtime.background PROCESS MESSAGE ', {
'msg.command:': msg.command,
'msg.subcommand': msg.subcommand,
'msg.sender': msg.sender,
'msg': msg,
'sender': sender
});

switch (msg.command) {
case 'loggedIn':
Expand Down Expand Up @@ -742,7 +734,7 @@ export default class RuntimeBackground {
if (enableInPageMenu) {
subCommand = 'autofilIPMenuActivate';
}
await this.syncService.fullSync(true); // BJA : nécessaire ?
await this.syncService.fullSync(true);
const allTabs = await BrowserApi.getAllTabs();
for (const tab of allTabs) {
BrowserApi.tabSendMessage(tab, {
Expand Down

0 comments on commit 5cd2a90

Please sign in to comment.