mirror of
https://github.com/vale981/tridactyl
synced 2025-03-05 09:31:41 -05:00
Remove repetitive tautological repetition in error messages: fix #617
This commit is contained in:
parent
5322577e0f
commit
b1211bdfae
1 changed files with 2 additions and 4 deletions
|
@ -56,9 +56,7 @@ export class Logger {
|
|||
return browser.runtime.sendMessage({
|
||||
type: "commandline_background",
|
||||
command: "recvExStr",
|
||||
args: [
|
||||
"fillcmdline # Error: " + message.join(" "),
|
||||
],
|
||||
args: ["fillcmdline #" + message.join(" ")],
|
||||
})
|
||||
else
|
||||
return browser.tabs.sendMessage(
|
||||
|
@ -69,7 +67,7 @@ export class Logger {
|
|||
{
|
||||
type: "commandline_frame",
|
||||
command: "fillcmdline",
|
||||
args: ["# Error: " + message.join(" ")],
|
||||
args: ["#" + message.join(" ")],
|
||||
},
|
||||
)
|
||||
}
|
||||
|
|
Loading…
Add table
Reference in a new issue